do while
程序员文章站
2024-03-23 20:45:16
...
- C++笔记-
do while
- 打印出所有三位水仙花数:每位数的立方和依然等于这个数
#include<iostream>
using namespace std;
int main()//打印出三位数的水仙花数
{
int num = 100;
do {
int a = num % 10;//取个位
int b = num / 10 % 10;//取十位
int c = num / 100;//取百位
if (a* a* a + b * b * b + c * c * c == num)//如果满足水仙花数条件则打印
{
cout << num << endl;
}
num++;
} while (num<1000);
system("pause");
return 0;
}
上一篇: xinixn -数据分析
下一篇: 《C语言复习---语句》