论文 Rebuttal 实战:针对 3 类常见负面意见(创新性/描述错误/效果)的回应策略与模板
2026/7/9 16:16:41
#include <iostream> #include <iomanip> // setw设置场宽 #include <cmath> // abs绝对值函数 using namespace std; int main() { int N; cin >> N; // 遍历每一行 for (int i = 0; i < N; i++) { // 遍历每一列 for (int j = 0; j < N; j++) { int num = N - abs(i - j); cout << setw(3) << num; // 每个数字占3字符宽度 } cout << endl; // 一行结束换行 } return 0; }