代码搜索:while

找到约 10,000 项符合「while」的源代码

代码结果 10,000
www.eeworm.com/read/400386/11578067

cpp xt6-16.cpp

#include using namespace std; int main() {char str[50],*pstr; int i,j,k,m,e10,digit,ndigit,a[10],*pa; cout
www.eeworm.com/read/400223/11580403

cpp fft.cpp

#include "stdafx.h" #include /////////////////////////////////////////////////////////////////////// // function name : fft() // purpose : four
www.eeworm.com/read/262367/11590529

cpp zhou.cpp

#define LIST_INIT_SIZE 100 //线性表顺序存储结构存储空间初始分配量 #define LISTINCREMENT 10 //存储空间分配增量 #define MAX 20 //矩阵最大行列数 #define MAXSIZE 100 //线性表、链表元素个数最大,矩阵非零元个数最大值 #include #include
www.eeworm.com/read/262299/11593546

c 2.c

#include #include #include main() {struct coms cms; struct dataseg dseg[64]; struct unknow_add adn[128]; struct know_add adk[128]; char name1[10],name2[10],name3[10];
www.eeworm.com/read/262262/11595676

c stdio.c

#include int main() { int c; FILE *in, *out; in = fopen("file.in","r"); out = fopen("file.out","w"); while((c = fgetc(in)) != EOF) fputc(c,out); exit(0);
www.eeworm.com/read/262261/11595839

arith

#!/bin/sh x=0 while [ "$x" -ne 10 ]; do echo $x x=$(($x+1)) done exit 0
www.eeworm.com/read/158550/11601741

c main.c

#include unsigned char keycnt=0; unsigned char tcnt=0; //键值判断 bit sjz=0; //产生三角波时用到的标志 /*void Delay(unsigned int tc) //延时程序 { while( tc != 0 ) { unsigned
www.eeworm.com/read/158531/11603468

pas p2001_4.pas

program p01_4(input,output);{装箱问题 Zhuang_Xiang_Wen_Ti} const maxn=31;maxv=20000; type arr=array[0..maxn] of integer; var w,a:arr; rem,r,v,n,i:integer; procedure sort(var w:arr); var i,j,t
www.eeworm.com/read/158531/11603471

pas t2000_1.pas

program t2000_1; var c:array[1..20] of integer; n,n1,r,i:longint; begin assign(input,'fjz.in'); reset(input); readln(n,r); close(input); assign(output,'fjz.out');
www.eeworm.com/read/158531/11603485

pas p2000_2.pas

program p2000_2(input,output);{税收与补贴问题 Revenue or allowance} const m=100; type point=^node; node=record price:longint; sale:longint; next:point; end; var h