main()
{int a[6],i;
for(i=0;i<6;i++)
scanf("%d",&a[i]);
min(a[i]);
}
int min(int a[])
{int i ,m;
for(i=0;i<5;i++)
{if (a[i]<a[i+1]) min=a[i];
else min=a[i+1];
}
printf("%d",min);
}
错误请帮忙更正
同时学习不同做法
[此贴子已经被作者于2007-8-8 2:56:45编辑过]
/*
min.C -- the smallest number
by 寂寞的柳丁
07.08.08
*/
#include "stdio.h"
#include "conio.h"
main()
{
int a[6],temp,i,j;
for(i=0;i<6;i++)
{
scanf("%d",&a[i]);
printf("%d",a[i]) ;
printf("\n");
}
for(i=0;i<6;i++)
{
for(j=i+1;j<6;j++)
if(a[i]>a[j])
{
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
for(i=0;i<6;i++)
{
printf("%d",a[i]);
printf("\n");
}
printf("the smallest number is:%d",a[0]);
getch();
}