代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/172776/9691362
uv2 while.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1,
Options 1,0,0 // Target 'T
www.eeworm.com/read/368299/9702525
py while_statement.py
numRocketsToFire = 3
rocketCount = 0
while rocketCount < numRocketsToFire:
# Increase the rocket counter by one
rocketCount = rocketCount + 1
print "Firing rocket #" + str( rocketCo
www.eeworm.com/read/269498/11096503
bas 测试while.bas
c=10
while c>5
print c
print "@@@@",c
c=c-1
for i=1 to 10 step 2
print i
next
wend
print "&&&&"
end
www.eeworm.com/read/413044/11169067
c do_while.c
/* do_while.c -- exit condition loop */
#include
int main(void)
{
const int secret_code = 13;
int code_entered;
do
{
printf("To enter the triskaidekapho
www.eeworm.com/read/413044/11169103
c while1.c
/* while1.c -- watch your braces */
/* bad coding creates an infinite loop */
#include
int main(void)
{
int n = 0;
while (n < 3)
printf("n is %d\n", n);
www.eeworm.com/read/413044/11169116
c while2.c
/* while2.c -- watch your semicolons */
#include
int main(void)
{
int n = 0;
while (n++ < 3); /* line 7 */
printf("n is %d\n", n); /* line 8 */
prin
www.eeworm.com/read/146694/12618073
cpp while_cf.cpp
//while_CF.cpp
#include //cout
#include //getch()
void main()
{ double c=20,f;
cout
www.eeworm.com/read/133753/14026807
cpp while_cf.cpp
//while_CF.cpp
#include //cout
#include //getch()
void main()
{ double c=20,f;
cout
www.eeworm.com/read/201771/15396935