#include <stdio.h>#include "math.h"main(){ long x,y,z; for(x=0;x<=10000;x++) { y=sqrt(x+100); z=sqrt(x+268); if(pow(y,2)==x+100&&pow(z,2)==x+268) printf("%ld\n",x); }}
- 3 回答
- 0 关注
- 1490 浏览
添加回答
举报
0/150
提交
取消