求助
小弟初学编程,编了一个程序,功能是,把输入的数排序,然后插入一个数,请高手指点问题出在什么地方。感激不尽#include <stdio.h>
void main()
{
int a[11];
int i,j,n,end,temp,temp_1,temp_2;
printf("Enter six numbers:\n");
for(i=1; i<=6; i++)
{
printf("a[%d]=",i);
scanf("%d",&a[i]);
printf("\n");
}
printf("The Origin number:\n");
for(i=1; i<=6; i++)
printf("%d ",a[i]);
for(i=1; i<=5; i++) /*sort*/
for(j=1; j<=6-i; j++)
{
if(a[j]>=a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
printf("\nThe sorted number:\n");
for(i=1; i<=6; i++)
printf("%d ",a[i]);
printf("\nEnter the number you want to insert: ");
scanf("%d ",&n);
end=a[6];
if(n >= end)
a[7]=n;
else
{
for(i=1; i<=6; i++)
{
if(a[i] >= n)
{
temp_1=a[i];
a[i]=n;
for(j=i+1; j<=7;j++) /*用两个变量temp_1,temp_2 可以实现数组元素后移*/
{
temp_2=a[j];
a[j]=temp_1;
temp_1=temp_2;
}
break;
}
}
}
printf("The result:\n");
for(i=1; i<=7; i++)
{
printf("a[%d]=%6d ",i,a[i]);
}
}