代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/359581/10135347
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/359581/10135385
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/359581/10135394
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/356874/10219898
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/356874/10219918
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/356874/10219924
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/279369/10443206
bas while_w.bas
'--------------------------------------------------------------
' (c) 1997-1999 MCS Electronics
'--------------------------------------------------------------
' file: WHILE_W.BAS
www.eeworm.com/read/277472/10633239
rc2 while.rc2
//
// WHILE.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
www.eeworm.com/read/421785/10698972
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/421785/10699035
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);