| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 117378 | 李明秦 | 打印菱形 | C++ | Compile Error | 0 MS | 0 KB | 665 | 2025-04-18 18:47:34 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int i,j,a; cin>>a; for(i=1;i<=a;i++){ for(j=1;j<=a-i;j++){ cout<<" "; } for(int k=1;k<=2*i-1;k++){ cout<<"*"; } cout<<endl; } for(i=a-1;i>=1;i--){ for(j=a-i;j>=1;j--){ cout<<" "; } for(k=2*i-1;k>=1;k--){ cout<<"*"; } cout<<endl; return 0;
Main.cc: In function 'int main()':
Main.cc:23:13: error: 'k' was not declared in this scope
for(k=2*i-1;k>=1;k--){
^
Main.cc:28:13: error: expected '}' at end of input
return 0;
^
Main.cc:28:13: error: expected '}' at end of input