闰年的判定
#include <bits/stdc++.h>
using namespace std;
int main() {
int y;
cin >> y;
if (y % 400 == 0 || y % 4 == 0 && y % 100 != 0) {
cout << "Leap year";
}
else {
cout << "Common year";
}
return 0;
}
打印栅格
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m;
cin >> n >> m;
for (int i = 1; i <= n; i ++) {
for (int j = 1; j <= m; j ++) {
cout << "+-";
}
cout << "+\n";
for (int j = 1; j <= m; j ++) {
cout << "| ";
}
cout << "|\n";
}
for (int j = 1; j <= m; j ++) {
cout << "+-";
}
cout << "+\n";
return 0;
}
匹配括号(一)
#