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