填空题 以下程序的功能是:输出a、b、c三个变量中的最小值。请填空。
#include<stdio.h>
main()
int a,b,c,t1,t2;
scanf("%d%d%d",&a,&b,&c);
t1=a<b?______;
t2=c<t1?______;
printf("%d/n",t2);


  • 1、
【正确答案】 1、a:b c:t1    
【答案解析】[解析] 本题的结果是t2存放a、b、c中的最小值。