代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/177608/9444201
_shift
#!/bin/sh
while [ "$1" != "" ]; do
echo "$1"
shift
done
exit 0
www.eeworm.com/read/373100/9475237
cpp 并查集.cpp
#define N 10000
int parent[N];
void UFset() //初始化
{
for(int i=0;i=0;i=parent[i]);
while(i!=x)
www.eeworm.com/read/176921/9479467
pas fakultae.pas
program Fakultaet;
begin
n:= 7;
i:= 1;
Fak:= 1;
while i < n do begin
i:= i + 1;
Fak:= Fak * i
end;
write(Fak)
end.
www.eeworm.com/read/176730/9486449
_shift
#!/bin/sh
while [ "$1" != "" ]; do
echo "$1"
shift
done
exit 0
www.eeworm.com/read/372762/9494440
c twodim.c
# include
void main()
{
int array[16][16];
int i, j, k, m, n;
/* 变量初始化 */
m = 1;
while(m == 1)
{
printf("请输入n(0
www.eeworm.com/read/372592/9500672
txt sort.txt
Sub SORT(N, RA())
L = Int(N / 2) + 1
IR = N
Do
If L > 1 Then
L = L - 1
RRA = RA(L)
Else
RRA = RA(IR)
RA(IR) = RA(1)
www.eeworm.com/read/372592/9500678
txt eclass.txt
Sub ECLASS(NF(), N, LISTA(), LISTB(), M)
For K = 1 To N
NF(K) = K
Next K
For L = 1 To M
J = LISTA(L)
While NF(J) J
J = NF(J)
Wend
www.eeworm.com/read/372527/9505082
_shift
#!/bin/sh
while [ "$1" != "" ]; do
echo "$1"
shift
done
exit 0
www.eeworm.com/read/372449/9510387
_shift
#!/bin/sh
while [ "$1" != "" ]; do
echo "$1"
shift
done
exit 0
www.eeworm.com/read/176251/9510637
bas fortst.bas
#!/usr/local/bin/sbrun -g
print "for test"
for i=1 to 10
print i
next
print "on exit i="; i
print
print "while test"
i = 0
while ( i < 10 )
print i
i = i + 1
wend
print "on exit i="; i
print
pr