还记得聚餐时经常玩的一个小游戏吗?
从1开始挨着说数字,遇到含有7或者是7的倍数就敲桌子
今天我们用C++来实现一份小抄
#include<iostream>
using namespace std;
int main()
{
int n = 1,a,b,c;
do
{
if (n % 10 == 7 || n / 10 == 7 || n % 7 == 0)
cout << "敲桌子" << endl;
else cout << n << endl;
n++;
} while (n <=100);
return 0;
}
效果如下: