编辑代码

#include <iostream>
using namespace std;
int main() {
    int a, b;
    cout << "输入性别代码。1代表男性,2代表女性。" << endl;
    cin >> a;
    cout << "输入你抽到的数字。" << endl;
    cin >> b;
    if (a == 1) {
        if(b % 2 == 1) {
            cout << "System:" << endl;
            printf("项目:1000m长跑,跳远。前往测试处继续。");
        } else if (b % 2 == 0) {
            cout << "System:" << endl;
            printf("项目:1000m长跑,俯卧撑。前往测试处继续。");
        }
    } else if (a == 2) {
        if(b % 2 == 1) {
            cout << "System:" << endl;
            printf("项目:800m长跑,跳绳。前往测试处继续。");
        } else if (b % 2 == 0) {
            cout << "System:" << endl;
            printf("项目:800m长跑,仰卧起坐。前往测试处继续。");
        }
    }
	return 0;
}