1497748267


私信TA

用户名:1497748267

访问量:16145

签 名:

学校比赛,刷题走起

等  级
排  名 1329
经  验 2971
参赛次数 1
文章发表 25
年  龄 0
在职情况 学生
学  校 重庆邮电大学移通学院
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
	int a, b;
	for (int i = 1000; i <= 9999; i++)
	{
		a = i / 100;
		b = i % 100;
		if (i == (int)pow(a + b, 2))
			cout << i <<" ";
	}
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »