用c语言编写程序,输出两个整型数中的最大值
时间: 2023-03-15 07:13:17 浏览: 172
C语言程序设计-编写程序。从键盘读入8个整数存入数组a中并输出这8个数据。和、最大值、最小值及平均值。正数之和、负数之和
5星 · 资源好评率100%
我可以给你一个示例:#include <stdio.h>int main(){
int a = 5;
int b = 10;
int c; c = (a > b) ? a : b; printf("The maximum of two integer is: %d\n", c); return 0;
}
阅读全文