代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/270669/11030208

c pathname.c

/* Convert relative to absolute pathnames */ #include #include "global.h" #include "dirutil.h" static void crunch(char *buf,char *path); /* Given a working directory and an arbitr
www.eeworm.com/read/270541/11033445

tmp mfc469.tmp

/* Test.PL0 */ Program abc; Integer x,y,z; Real a,b; Procedure ab(Var m,n:Integer;t:Real); Begin t:=n+m; If m>n then n:=m else t:=m; While n
www.eeworm.com/read/270541/11033493

tmp mfc163.tmp

/*这是一个测试程序*/ Program abc; Integer x,y,z; Real a,b; Procedure ab(Var m,n:Integer;t:Real); Begin t:=n+m; If m>n then n:=m else t:=m; While n
www.eeworm.com/read/270541/11033495

tmp mfc46c.tmp

/*这是一个测试程序*/ Program abc; Integer x,y,z; Real a,b; Procedure ab(Var m,n:Integer;t:Real); Begin t:=n+m; If m>n then n:=m else t:=m; While n
www.eeworm.com/read/270541/11033535

pl0 test.pl0

/*这是一个测试程序*/ Program abc; Integer x,y,z; /*变量声明*/ Real a,b; Procedure ab(Var m,n:Integer; t:Real); /*过程*/ Begin t:=n+m; If m>n then /*条件语句*/ n:=m els
www.eeworm.com/read/270503/11034739

cpp simplescanner.cpp

#include #include #include #define MAX 20 #define MAXBUF 500 int lineno; char *kw[6] = {"else","if","int","return","void","while"}; //存放c-的关键字 void mai
www.eeworm.com/read/469853/6927995

txt 04_expressions_flowcontrol.txt

运算符: 按照优先级向下排列 1: () [] . ()优先运算 []数组下标 .引用访问属性和方法 结合性: 从左向右 2: ++ -- ! ~ ++ 自加 -- 自减 int a=1; int b=++a; int b=a++; ! 逻辑非 boolean b=false; !b==true;
www.eeworm.com/read/197682/6954015

pl get_src.pl

#!/usr/bin/perl while ($input=) { if ($input=~/^$ARGV[0]/) { print $input; } }
www.eeworm.com/read/133091/6956293

txt readme.txt

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Notice : Any time, you should read Omap1510Test.map in directory of Omap1510Test. : To care for the MEMORY CO
www.eeworm.com/read/469371/6973827

cc 2659255_ac_78ms_292k.cc

#include using namespace std; int gcd(int a,int b) { while(b!=0) { int r=a%b; a=b; b=r; } return a; } int main() { in