我爱橙 发表于 2022-4-28 13:40:56

EX5.17 输入<回车>

本帖最后由 我爱橙 于 2022-5-2 17:02 编辑

程序代码如下,从键盘输入以下数据:2<回车>7<回车>,则程序输出为

#include <stdio.h>

int main()

{

int a,b;

printf("please input a and b:\n");

scanf("%d%d",&a,&b);

printf("the output data is %d\n",a<b?b:a);

return 0;

}



A.the output data is 2         ×,空格不输入?


B.the output data is 7         √


C.the output data is 1


D.the output data is 0
页: [1]
查看完整版本: EX5.17 输入<回车>