代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/466240/7041380
cpp while.cpp
#include
int main()
{int i,sum;
i=1;sum=0;
do
{sum=sum+i;i++;}
while(i
www.eeworm.com/read/456533/7345920
cpp while.cpp
// while.cpp -- introducing the while loop
#include
const int ArSize = 20;
int main()
{
using namespace std;
char name[ArSize];
cout
www.eeworm.com/read/456533/7346217
cpp while.cpp
// while.cpp -- introducing the while loop
#include
const int ArSize = 20;
int main()
{
using namespace std;
char name[ArSize];
cout
www.eeworm.com/read/456367/7350758
cpp while.cpp
// while.cpp -- introducing the while loop
#include
const int ArSize = 20;
int main()
{
using namespace std;
char name[ArSize];
cout
www.eeworm.com/read/456367/7351042
cpp while.cpp
// while.cpp -- introducing the while loop
#include
const int ArSize = 20;
int main()
{
using namespace std;
char name[ArSize];
cout
www.eeworm.com/read/447019/7560532
java while.java
package inter;
import symbols.*;
public class While extends Stmt {
Expr expr; Stmt stmt;
public While() { expr = null; stmt = null; }
public void init(Expr x, Stmt s) {
expr = x; s
www.eeworm.com/read/442749/7645708
py while.py
#!/usr/bin/env python
# Filename: while.py
number=23
running=True
while running:
guess=int(raw_input('Enter an integer : '))
if guess==number:
print 'Congratulations, you guessed it.'
www.eeworm.com/read/435334/7793282
class while.class
www.eeworm.com/read/435334/7793283
java while.java
package inter;
import symbols.*;
public class While extends Stmt {
Expr expr; Stmt stmt;
public While() { expr = null; stmt = null; }
public void init(Expr x, Stmt s) {
expr = x; s
www.eeworm.com/read/435264/7794844
py while.py
#!/usr/bin/env python
# Filename: while.py
number=23
running=True
while running:
guess=int(raw_input('Enter an integer : '))
if guess==number:
print 'Congratulations, you guessed it.'