哪位大佬知道这道题我错在哪???

ykj104 2024-06-13 18:21:09 7

#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if (n % 2 != 0) { for (int i = 1; i <= n + 2; i++) { for (int j = 1; j <= n + 2; j++) { cout << ""; } cout << endl; } } else { for (int i = 1; i <= n + 1; i++) { for (int j = 1; j <= n + 1; j++) { cout << ""; } cout << endl; } } }

{{ vote && vote.total.up }}

共 3 条回复

ykj104

think you!

root 站长

你试试大一点的数字,比如 n=4,5,6 你就可以找到规律

root 站长

行,列与n的关系找错了