欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;
}
相关标签: C++笔记 c++