代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/189163/8487423

cpp library.cpp

#include using namespace std; int main() { char a[10]; int j=0,b=0,k=0,B,c; while(j>a[j]; j++; } for(int i=0;i
www.eeworm.com/read/290204/8496891

c natk.c

#include "math.h" double natk(x,y,n,t,eps) int n; double t,eps,x[],y[]; { int i,j,k,m,l; double z,xx[10],yy[10]; z=0.0; if (n
www.eeworm.com/read/290204/8496894

c eatk.c

#include "math.h" double eatk(x0,h,n,y,t,eps) int n; double t,eps,x0,h,y[]; { int i,j,k,m,l; double z,xx[10],yy[10]; z=0.0; if (n
www.eeworm.com/read/290204/8497137

c queen.c

#include "stdio.h" #include "math.h" #include "stdlib.h" void queen(int n) { int i,j,k,jt,*q; q=malloc(n*sizeof(int)); for(i=0; i
www.eeworm.com/read/389812/8498059

php 0bc03.php

www.eeworm.com/read/188928/8508056

txt 新建 文本文档.txt

一个复杂的工程通常可以分解成一组小任务的集合,完成这些小任务意味着整个工程的完成。例如,汽车装配工程可分解为以下任务:将底盘放上装配线,装轴,将座位装在底盘上,上漆,装刹车,装门等等。任务之间具有先后关系,例如在装轴之前必须先将底板放上装配线。任务的先后顺序可用有向图表示——称为顶点活动( Activity On Vertex, AOV)网络。有向图的顶点代表任务,有向边(i, j) 表示先后关系 ...
www.eeworm.com/read/188926/8508136

txt 新建 文本文档.txt

一个复杂的工程通常可以分解成一组小任务的集合,完成这些小任务意味着整个工程的完成。例如,汽车装配工程可分解为以下任务:将底盘放上装配线,装轴,将座位装在底盘上,上漆,装刹车,装门等等。任务之间具有先后关系,例如在装轴之前必须先将底板放上装配线。任务的先后顺序可用有向图表示——称为顶点活动( Activity On Vertex, AOV)网络。有向图的顶点代表任务,有向边(i, j) 表示先后关系 ...
www.eeworm.com/read/389636/8509855

c main.c

/*------------------------------------------------------------------------------ MAIN.C: Interrupt Driver SIO Using printf. Copyright 1995-2002 KEIL Software, Inc. ------------------------------
www.eeworm.com/read/389636/8509904

c main.c

/*------------------------------------------------------------------------------ MAIN.C: Interrupt Driver SIO Using printf. Copyright 1995-2002 KEIL Software, Inc. ------------------------------
www.eeworm.com/read/389551/8514122

c 词法分析器.c

#include"stdio.h" #include"string.h" #include"process.h" #define MAX 50 void main() { FILE *in; //存放输入字符串和输出单词串的文件 char arr[MAX]; //arr数组存放单词符号 char currentchar;//currentchar存放当前输入字符 i