Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102736 吴彦晓 数字金字塔 C++ Compile Error 0 MS 0 KB 227 2024-12-22 15:06:40

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int j = 1;j <= n;j++){ for(int k = 1;k<=n-j;k++){ cout<<" "; } for(int i = 1;i <= j*2-1;i++){ cout<<i; }cout<<endl } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:2: error: expected ';' before '}' token
  }
  ^