问题
填空题
以下程序的功能是:输出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);
答案
参考答案:a:b c:t1
解析: 本题的结果是t2存放a、b、c中的最小值。