F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

View Compilation Error

0_0_24152248_17530.cpp: In function 'int main()':
0_0_24152248_17530.cpp:3:130: error: expected '}' at end of input
 int main(){    int n;    while(cin>>n)    {        if(n==0)            break;        int a[n];        cin>>a[0];        int min=0;               //注意这里有坑,看看后面我写的调试情况        for(int i=1;i<n;i++)        {            cin>>a[i];            if(a[min]>a[i])                min=i;        }        swap(a[0],a[min]);        for(int i=0;i<n;i++)        {            cout<<a[i];            if(i!=n-1)                cout<<" ";     //控制空格,防止WA        }        cout<<endl;     }} 
                                                                                                                                  ^
0_0_24152248_17530.cpp:3:130: error: expected '}' at end of input


Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-11-15 22:27:32, Gzip enabled