Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
126548 编程星球01 19从小到大进行排序 C++ Compile Error 0 MS 0 KB 500 2025-07-20 08:43:36

Tests(0/0):


Code:

#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 n,b; int a[100001]={0}; // 初始化 0 cin>>n; for(int i=0;i<n;i++){ cin>>b; a[b]++; } for(int j=0;j<=100000;j++){ if(a[j]!=0){ cout<<j<<" "; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:24:1: error: expected '}' at end of input
 }
 ^