用C语言编程求两个整数中的最大值。 **输入格式要求:"%d%d" 提示信息:"input the value of x and y:" **输出格式要求:"The max of %d and %d is %d\n"
时间: 2023-12-03 21:03:45 浏览: 67
c语言求最大值
好的,这是用C语言编写的代码,可以求出输入的两个整数中的最大值:
```c
#include <stdio.h>
int main() {
int x, y, max;
printf("input the value of x and y:");
scanf("%d%d", &x, &y);
max = x > y ? x : y;
printf("The max of %d and %d is %d\n", x, y, max);
return 0;
}
```
输入格式要求为:"%d%d",提示信息为:"input the value of x and y:",输出格式要求为:"The max of %d and %d is %d\n"。
阅读全文