在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1 #include<stdio.h> 2 #include<stdlib.h> 3 /*题目:一个整数,它加上100 后是一个完全平方数,再加上168 又是一个完全平方数,请问该数是多少?*/ 4 int main() { 5 system("color 1F"); // 设定显示框为蓝底白字 6 system("mode con cols=80 lines=30"); //固定显示框尺寸 7 /******************************************程序主体分割线(顶部)*************************/ 8 long int x,y; 9 10 for(x=0;x<100000;x++) 11 for(y=0;y<=100000;y++) 12 if(y*y==168+x*x) 13 printf("%ld\n----------------\n",x*x-100); 17 /******************************************程序主体分割线(底部)***************************/ 18 return 0; 19 }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论