作业帮 > 综合 > 作业

write a C program C语言程序设计 在线等.拜托谢谢

来源:学生作业帮 编辑:搜搜做题作业网作业帮 分类:综合作业 时间:2024/05/11 03:20:51
write a C program C语言程序设计 在线等.拜托谢谢
write a program that reads three pairs of numbers and adds the larger of the first pair, the larger of the second pair and the larger of the third pair. Use a function to retum the larger of each pair.
write a C program C语言程序设计 在线等.拜托谢谢
#include
int larger(int a,int b)
{
return a>b?a:b;
}
int main()
{
int i,a,b,sum=0;
for(i=1;i