Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153442 张蔚林 19从小到大进行排序 C++ Compile Error 0 MS 0 KB 285 2026-05-17 12:10:14

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int n,s[100001]={0},i; cin>>n; for(i=0;i<n;i++){ int b; cin>>b; s[b]++; } for(i=0;i<=100000;i++){ while(s[i]>0){ cout<<i<<' '; t[i]--; } } cout<<endl; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:15:4: error: 't' was not declared in this scope
    t[i]--;
    ^