代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/324136/3506096
test while-old.test
# Commands covered: while
#
# This file contains the original set of tests for Tcl's while command.
# Since the while command is now compiled, a new set of tests covering
# the new implementation is
www.eeworm.com/read/323635/3512376
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/316877/3584611
js do-while.js
var i = 0, num = 50;
// loop until the counter hits 1
do
{
num--;
i++;
} while( i < 1 );
// display the final counter and number values
alert("Loop stopped at " + i + "\nnum is now " + n
www.eeworm.com/read/292141/3958842
java factorial_while.java
//【习2.10】 用三种循环语句求n!。
//一重循环,while循环语句。
public class Factorial_while
{
public static void main(String args[])
{
int n=5;
int product=1; /
www.eeworm.com/read/280276/4127302
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/271797/4222716
sln example_while.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example_While", "Example_While.csproj", "{C47EEE41-088C-4422-B9E0
www.eeworm.com/read/449188/1679526
java factorial_while.java
//【习2.10】 用三种循环语句求n!。
//一重循环,while循环语句。
public class Factorial_while
{
public static void main(String args[])
{
int n=5;
int product=1; /