大神帮看看程序为啥错了
#include<iostream>using namespace std;
int main()
{ int a[10];
int i,j,temp;
cout<<"please inout 10 numbers:"<<endl;
for(i=0;i<10;i++)
{
cin>>a[i];
}
for(i=0;i<10;i++)
for(j=i+1;j<10;j++)
{
if a[i]>a[j]
{
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
for(i=0;i<10;i++)
{
cout<<a[i]<<" ";
}
return 0;
}
E:\My C Projects\arr\arr.cpp(15) : error C2061: syntax error : identifier 'a'
E:\My C Projects\arr\arr.cpp(16) : error C2143: syntax error : missing ';' before '{'