C程序设计。 要求用C语言编写程序,设计一个从任意三个数中取最小者。
C程序设计。 要求用C语言编写程序,设计一个从任意三个数中取最小者。
日期:2017-11-24 17:56:18 人气:1
#include
int main()
{
int a,b,c,t;
scanf("%d%d%d",&a,&b,&c);
if(a<b)
t=a;
else
t=b;
if(c<t)
t=c;
printf("%d",t);
return 0;
}
这只是三个整数取最小值的程序
还是说你要任意数字取最小值?