大家好:
衷心希望各位点赞。
您的问题请留在评论区,我会及时回答。
案例描述
从1开始数到数字100,如果数字的个位含有7,或者数字是7的倍数,我们打印输出“敲桌子”,其余数字直接打印输出。
代码
#include <iostream>
#include <Windows.h>
using namespace std;
//敲桌子游戏
int main(void) {
for (int i = 0; i <= 100; i++) {
//如果是7的倍数、个位是7、十位是7,打印敲桌子
if (i % 7 == 0 || i % 10 == 0 || i / 10 == 7) {
cout << "敲桌子" << endl;
}
else {//如果不是特殊数字,就打印输出
cout << i << endl;
}
}
system("pause");
return 0;
}
运行截图: