代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/258526/11858392

cpp while.cpp

#include #include #include #define buf 20 #define MAXBUF 255 typedef struct Token { int label; char name[buf]; int code; }Token; typedef struct Sy
www.eeworm.com/read/154474/11951548

do-while˴

范例源代码: 001 002 003 do-while语句示例 004 005 006
www.eeworm.com/read/253260/12235070

cpp while.cpp

// while.cpp -- introducing the while loop #include const int ArSize = 20; int main() { using namespace std; char name[ArSize]; cout
www.eeworm.com/read/253260/12235763

cpp while.cpp

// while.cpp -- introducing the while loop #include const int ArSize = 20; int main() { using namespace std; char name[ArSize]; cout
www.eeworm.com/read/149587/12364185

opt while.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.a*; *.src) oExt (*.obj) lExt (*.lib) tExt (*.txt) pExt (*.plm) CppX (*.cpp) DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/149587/12364187

c while.c

#include void Delayx1ms(Byte count); void Ifdemo3(void){Byte FgpulseShort,FgpulseLong,Dutycount; while(P1_0==0) //不为0跳过 {Delayx1ms(1); //当检测到P1_0为低电平时计数直到P1_0变高, if(P1_0==
www.eeworm.com/read/337096/12392093

cpp while.cpp

// while.cpp -- introducing the while loop #include const int ArSize = 20; int main() { using namespace std; char name[ArSize]; cout
www.eeworm.com/read/129337/14250781

while1

#!/bin/sh echo "Enter password" read trythis while [ "$trythis" != "secret" ]; do echo "Sorry, try again" read trythis done exit 0
www.eeworm.com/read/129337/14250836

while2

#!/bin/sh foo=1 while [ "$foo" -le 20 ] do echo "Here we go again" foo=$(($foo+1)) done exit 0
www.eeworm.com/read/230581/14281141

ats while.ats

Section Main var @a as atsint @a = 1 While @a < 5 msgbox @a @a = @a +1 Wend End Section