c++程序设计问题(不是旧版的C语言)

2024-12-21 22:59:20
推荐回答(2个)
回答1:

#include
void main()
{
int a[10];
int i,j,k;
int temp;
cout<<"please input the total number of the numbers"< cin>>i;
i--;
cout<<"then please input the "< j=0;
while(j<=i)
{
cin>>a[j];
j++;
}
cout<<"the orginal array is ";
for(j=0;j<=i;j++)
{
cout<<" "< }
cout< for(j=0;j<=i-1;j++)
{
for(k=j+1;k<=i;k++)
{
if(a[j] {
temp=a[j];
a[j]=a[k];
a[k]=temp;
}
}
}
cout<<"the right sort is :";
for(j=0;j<=i;j++)
{
cout<<" "< }
cout<}
谢谢。

回答2:

没有其他要求的话,做个冒泡排序不就行了。