蓝桥杯--特殊的数字
作者:互联网
153是一个非常特殊的数,它等于它的每位数字的立方和,即153=1*1*1+5*5*5+3*3*3。编程求所有满足这种条件的三位十进制数。
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
int a; //个位数
int b;//十位数
int c;//百位数
for (int i = 100; i <= 999; i++)
{
a = i % 10; //个位数
c = i / 100;
b = (i / 10) % 10;
if (pow(a, 3) + pow(b, 3) + pow(c, 3) == i)
cout << i << endl;
}
return 0;
}
标签:153,数字,--,蓝桥,int,百位数,十位数,include 来源: https://blog.csdn.net/m0_53252742/article/details/121333292