初学者求其他写法
别的写法研究好久求下面的有没有别的写法#include<stdio.h>
#include <math.h>
void main()
{
int x;
x=0;
loop:if(sqrt(x+100)==(int)sqrt(x+100)&&sqrt(x+168)==(int)sqrt(x+168))
{
printf("%d\n",x);
}
else
{
x++;
goto loop;
}
}
while ( true )
{
if ( sqrt(x+100)==(int)sqrt(x+100)&&sqrt(x+168)==(int)sqrt(x+168) )
{
printf("%d\n",x);
break;
}
x++;
} for(x=0;sqrt(x+100)==(int)sqrt(x+100)&&sqrt(x+168)==(int)sqrt(x+168);x++);
printf("%d\n",x); 好吧,学习中
页:
[1]