c语言 从键盘接收两个整数,求最大值
发布网友
发布时间:2023-05-17 07:39
我来回答
共3个回答
热心网友
时间:2023-05-24 21:59
#include<stdio.h>
main()
{
int a,b;
printf("请输入第一个整数: ");
scanf("%d",&a);
printf("请输入第二个整数: ");
scanf("%d",&b);
if(a>b)
printf("最大值是: %d",a);
else
printf("最大值是: %d\n",b);
}
这个挺简单的,上课没听老实讲吧?我以前也是这样的,不过好久没有做过C语言了
热心网友
时间:2023-05-24 22:00
#include <stdio.h>
main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d\n",(a>b)?a:b);
}
热心网友
时间:2023-05-24 22:00
#include<stdio.h>
int main(void)
{
int a,b;
printf("请输入两个整数:\n");
scanf("%d%d",&a,&b);
if(a<b)
a= b;
printf("输入的两个数中的最大值是:%d\n",a);
return 0;
}