代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/156494/11797572
sql demo03.sql
select 90101, dump(90101,16) from dual
union all
select 90102, dump(90102,16) from dual
union all
select 90103, dump(90103,16) from dual
/
select 90101, dump(reverse(90101),16) from dual
unio
www.eeworm.com/read/258191/11877674
cpp reversible.cpp
//: C20:Reversible.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Using reversible containers
www.eeworm.com/read/153678/12012292
cpp reversible.cpp
//: C20:Reversible.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Using reversible contain
www.eeworm.com/read/340968/12116865
mht dir_c.mht
From:
Subject:
Date: Wed, 27 Sep 2006 22:40:20 +0800
MIME-Version: 1.0
Content-Type: text/html;
charset="gb2312"
Content-Transfer-Encoding: quoted-printabl
www.eeworm.com/read/251644/12328565
cpp iter3.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josuttis 19
www.eeworm.com/read/234146/14120984
c vi.c
#include /* 引进 curses.h, 并自动引进 stdio.h */
#define StartX 1 /* 决定游标初始位置 */
#define StartY 1
void initial();
main()
{
int x=StartX; /* 宣告 x,y 并设定其初值 */
www.eeworm.com/read/127957/14325757
txt ch.txt
重要说明-请仔细研读:
本《最终用户许可协议》(以下简称『许可协议』)是一份,您(个人
或单一法人团体)与『铱德系统有限公司或铱德计算机软件开发有限公司』
(以下简称『铱德系统』),就『铱德系统』之软件产品,其中包括书面资
料、相关之媒体介质、以及可能包括『在线』或电子文档(以下简称为『软
件产品』或『软件』)间所合法成立之协议。您一旦安装、拷贝或以其他方
式使用本『软件产品』,即 ...
www.eeworm.com/read/228533/14380234
c dblline.c
/*
Symmetric Double Step Line Algorithm
by Brian Wyvill
from "Graphics Gems", Academic Press, 1990
user provides "setpixel()" function for output.
*/
#define swap(a,b) {a^=b; b^=a; a^=b;}