代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/27335/983143
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/479931/1328551
exp while-stepping.exp
# Copyright 1998, 2007, 2008 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 publish
www.eeworm.com/read/479931/1328560
exp while-dyn.exp
# Copyright 1998, 2007, 2008 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 publish
www.eeworm.com/read/477634/1359050
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/475965/1374301
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/475965/1374321
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/475965/1374327
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/471368/1431491
java factorial_while.java
//【习2.10】 用三种循环语句求n!。
//一重循环,while循环语句。
public class Factorial_while
{
public static void main(String args[])
{
int n=5;
int product=1; /