代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/357352/3016238
tests while1.tests
while false; do echo NOT SHOWN; done
echo OK:$?
www.eeworm.com/read/357352/3016266
tests while_in_subshell.tests
(while true; do exit; done)
echo OK: $?
www.eeworm.com/read/158872/5592244
exp while-stepping.exp
# Copyright 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the
www.eeworm.com/read/158872/5592254
exp while-dyn.exp
# Copyright 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the
www.eeworm.com/read/474667/6804754
bmp while loop.bmp
www.eeworm.com/read/292920/8324203
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/292920/8324280
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/292920/8324301
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