C++学习笔记(第十天)
Posted 凿壁不偷光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习笔记(第十天)相关的知识,希望对你有一定的参考价值。
求水仙花数
using namespace std;
int main()
{
int num = 100;
do
{
int a = 0;//个位
int b = 0;
int c = 0;
a = num % 10;
b = num / 10 % 10;
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;
}
敲桌子
using namespace std;
int main()
{
int n = 100;
for (int n = 1; n < 100; n++)
{
if (n % 7 == 0 || n % 10 == 7 || n / 10 == 7)
{
cout << "敲桌子"<< endl;
}
else
{
cout << n << endl;
}
}
system("pause");
return 0;
}
以上是关于C++学习笔记(第十天)的主要内容,如果未能解决你的问题,请参考以下文章