编写中奖程序:屏幕输入个正整数award,如果award 为偶数,则除以8求余数。如果是奇数除以7求余数。 如果余数是1输出:恭喜一等奖,如果余数是2或3输出:恭喜二等奖,如果是4或5或6,输出:恭喜三等奖,其他数字输出:很道然,没中奖
时间: 2023-05-14 16:06:15 浏览: 124
以下是中奖程序的完整代码:
```
#include <iostream>
using namespace std;
int main() {
int award;
cout << "请输入一个正整数:";
cin >> award;
int remainder;
if (award % 2 == 0) {
remainder = award % 8;
} else {
remainder = award % 7;
}
if (remainder == 1) {
cout << "恭喜一等奖!" << endl;
} else if (remainder == 2 || remainder == 3) {
cout << "恭喜二等奖!" << endl;
} else if (remainder >= 4 && remainder <= 6) {
cout << "恭喜三等奖!" << endl;
} else {
cout << "很遗憾,没中奖。" << endl;
}
return 0;
}
```
关于中文加密,我不是很清楚你具体想要什么样的加密方式,请提供更多细节。而对于 lua closure factory 的完整代码,我也不清楚你具体想要什么样的代码,请提供更多细节。
阅读全文