代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/159030/5588688
legal-9
class Program {
boolean p, q;
int g () {
int a, b, c;
while (a == 3) {
b = b + 7;
}
return c;
}
int main () {
g();
}
}
www.eeworm.com/read/158872/5592282
c until.c
foo (void)
{
int i, x, y, z;
x = 0;
y = 1;
i = 0;
while (i < 2)
i++;
x = i;
y = 2 * x;
z = x + y;
y = x + z;
x = 9;
y = 10;
}
main ()
{
int a = 1;
foo ();
a += 2;
return 0;
}
www.eeworm.com/read/475913/6769398
t prog0.t
{
int i; int j; float v; float x; float[100] a;
while( true ) {
do i = i+1; while( a[i] < v);
do j = j-1; while( a[j] > v);
if( i >= j ) break;
x = a[i]; a[i] = a[j]; a[j] = x;
}
}
www.eeworm.com/read/475913/6769419
t identity.t
{
int i; int j; float[10][10] a;
i = 0;
while ( i < 10 ) {
j = 0;
while ( j < 10 ) {
a[i][j] = 0.0;
j = j + 1;
}
i = i + 1;
}
i = 0;
while ( i < 10 ) {
a[i][i] = 1.0;
i = i + 1
www.eeworm.com/read/174065/6783650
c ch18-3.c
#include
main()
{
char ch=' ';
while(ch!= 'a')
ch=getchar();
}
www.eeworm.com/read/174065/6783652
c ch18-4.c
#include
main()
{
char c;
c=getchar();
while(c!= '\n')
{
putchar(c);
c=getchar();
}
}
www.eeworm.com/read/471682/6887919
c program6_04.c
/* Example 6.4 Arrays of strings */
#include
int main(void)
{
char str[][40] = {
"To be or not to be" ,
", that is the question"
www.eeworm.com/read/295361/8168101
c krx41402.c
#define swap(t,x,y) \
do { \
(unsigned char *)_0=(unsigned char *)(&(x)); \
(unsigned char *)_1
www.eeworm.com/read/194440/8193852
m scandata.m
function s= scandata(x)
%
%
s = 0;
j = 1;
while( jlength(x)
break;
end
end
x(j), i-1
j=i;
s =
www.eeworm.com/read/393530/8277408
asv interpolate.asv
%function is=interpolate(s)
% s is the signal
%*****************************
%******* this is for interpolate******
s=x0;
f=find(s==0);
l=length(f);
lt=l;
is=s;
i=2;
while i