C语言实验——求三个整数的最大值
Time Limit: 1000MS
Memory Limit: 65536KB
Problem Description
请编写程序,输入三个整数,求出其中的最大值输出。
Input
在一行上输入三个整数,整数间用逗号分隔。
Output
输出三个数中的最大值。
Example Input
5,7,9
Example Output
max=9
解题思路:就是额外用一个数来存最大值即可,通过比较来逐渐更新d的值
#include<stdio.h> int main() { int a, b, c, d; scanf("%d,%d,%d",&a, &b, &c); d=0; if(a < b) { d = b; } else { d = a; } if(d > c) { printf("max=%d\n",d); } else { printf("max=%d\n",c); } return 0; }