#include "stdio.h"
#include "math.h"
#include "stdlib.h"
void main()
{
float i,x,y;
for (i=1;i<100000;i++)
{x=sqrt(i+100);
y=sqrt(i+168);
if(x*x==i+100&&y*y==i+168)
printf("\n%.2f\n",i);
}
system("pause");
}
1.加载"math.h"库文件;
2.double/float sqrt(double/float);
3.必须先定义参数才能使用。
时间: 2024-10-10 03:05:48