1497748267


私信TA

用户名:1497748267

访问量:16146

签 名:

学校比赛,刷题走起

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

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
	int n;
	int a, b, c;
	for (int i = 100; i <= 999; i++)
	{
		n = i;
		a = n / 100;
		b = n / 10 % 10;
		c = n % 10;
		if (int(pow(a, 3)) + int(pow(b, 3)) + int(pow(c, 3)) == n)
			cout << n << endl;
	}
	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »