代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/304476/13793655
c text1.c
main()
{ char nVar1,nVar2,nVar3,nVar4,nVar5,nVar6;
nVar1=(3&5); //位与
nVar2=(3|5); //位或
nVar3=(3^5); //位异或
nVar4=(~5); //位取反
nVar5=(32); //右移位
while(1);
www.eeworm.com/read/303498/13814505
m e0317.m
%(1)
y=0;i=1;
n=input('n=?');
while i=1.5
break;
end
i=i+1;
end
i,y
www.eeworm.com/read/148721/5709232
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/148721/5709280
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/148721/5709328
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/148721/5709463
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/148721/5709555
1bk init.1bk
1 2 3 4
5 6
7
if
for
else
while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
1 2 3 if
4 5 0 for
6 7 8 else
9 10 11 while
0 0 0
www.eeworm.com/read/147331/5732021
c mulhi3.c
short
__mulhi3(short a, short b)
{
int r;
r = 0;
while (a)
{
if (a & 1)
{
r += b;
a>>=1;
b
www.eeworm.com/read/146084/5740116
spl fact.spl
int n;
int fact;
read n;
fact = 1;
while (n > 1)
{
fact = fact * n;
n = n - 1;
}
write fact;
www.eeworm.com/read/124347/6051482
c mulhi3.c
short
__mulhi3(short a, short b)
{
int r;
r = 0;
while (a)
{
if (a & 1)
{
r += b;
a>>=1;
b