代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/380151/9159859
m arcsin2.m
function y=arcsin2(x)
p=1;
n=0;
p1=0;
while p>=0.002
p=factorial(2*n)*(x^(2*n+1))/(2^(2*n)*(factorial(n))^2*(2*n+1));
p1=p+p1;
n=n+1;
end
y=p1;
www.eeworm.com/read/378183/9246325
dat codetc2.dat
while 语句
功能: while语句用来实现"当型"循环结构.
----
形式: while(表达式)语句
----
www.eeworm.com/read/378183/9247964
dat vfpdat50.dat
格式: COUNT[][FOR][WHILE][TO ]
----
功能: 计算指定范围内满足条件的记录数.
----
www.eeworm.com/read/180962/9278580
c arrays.c
char x[] = "abc";
int i[] = { 1, 2, 3, 4, 5};
void main (void)
{
while (1);
;
}
www.eeworm.com/read/371105/9568256
c 3.c
main ( )
{
long x, y ;
x=1 ;
y=18;
while ( y>0)
{ x=2*(x+1) ;
y-- ;
}
printf("x=%ld\n", x);
www.eeworm.com/read/366019/9836472
c c_prog.c
unsigned int k;
void main(void)
{
unsigned int i;
while(1)
{
for(i=0;i
www.eeworm.com/read/169583/9849742
m 鸡兔同笼.m
i=1;
while 1
if rem(100-i*2,4)==0&(i+(100-i*2)/4)==36
break;
end
i=i+1;
end
a1=i
a2=(100-2*i)/4
www.eeworm.com/read/365117/9878896
c break_test.c
void main()
{
int i;
while( 1 ) {
if( i ) continue;
break;
}
}