No.16 sqrt函数问题
Posted cxr119911
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了No.16 sqrt函数问题相关的知识,希望对你有一定的参考价值。
#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.必须先定义参数才能使用。
以上是关于No.16 sqrt函数问题的主要内容,如果未能解决你的问题,请参考以下文章