我希望输入一个大于0的整数n,让这段程序输出的结果为4,那么最小是()?
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, cnt = 0;
cin >> n;
if (n % 2 == 1)
cnt++;
发表评论