代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/248954/12530800
cpp 6_2.cpp
#include
using namespace std;
int main()
{ const int SIZE=5; //语句1:定义符号常量用于设置数组大小
double Array[SIZE]; //语句2:将数组元素声明为双精度型
cout
www.eeworm.com/read/335381/12531358
htm rev_6652.htm
reverse
Click on the banner to return to the Class Reference home page.
©Copyright 199
www.eeworm.com/read/247482/12657885
cpp chrt.cpp
// 演示中国剩余定理
// 本程序可以从3个方程推广到更多个方程
// 谁要是能把该程序推广到n个方程的情况,请给我发mail.
// linfb@sdu.edu.cn 2003 12 9
/* 如果推广到n个方程的提示
a1,a2,a3可以使用一个数组a[10], 则可以推广到10个方程的情况
同样,m1,m2,m3也使用一个数据m[10]
www.eeworm.com/read/238106/13906312
cpp 10_3.cpp
//10_3
#include
struct Node{
char c;
Node* next;
};
Node* reverse(Node* head);
void main()
{
Node x[4];
for(int i=0; i
www.eeworm.com/read/237638/13940208
cpp 10_3.cpp
//10_3
#include
struct Node{
char c;
Node* next;
};
Node* reverse(Node* head);
void main()
{
Node x[4];
for(int i=0; i
www.eeworm.com/read/236202/14028278
txt c51clock.txt
基于C语言的单片机电子时钟
#include //定义头文件和各个输入管脚以及变量声明
#include
#define unit unsigned int
#define uchar unsigned char
#define DIGPORT XBYTE [0x8000] /*定义字型字位口*/
#define
www.eeworm.com/read/235612/14061814
m flipx.m
function flipx
% FLIPX: script to flip the direction of the x axis
%
% just type "flipx" at the matlab prompt
state=get(gca,'xdir');
if(strcmp(state,'normal'))
set(gca,'xdir','reverse')
else
www.eeworm.com/read/235612/14061828
m flipy.m
function flipy
% FLIPY: script to flip the direction of the y axis
%
% just type "flipy" at the matlab prompt
state=get(gca,'ydir');
if(strcmp(state,'normal'))
set(gca,'ydir','reverse')
else