CPP4. 获取两数最大值
描述
键盘录入两个整数 a 和 b,获取这两个整数中的较大值,并输出。输入描述
输入任意两个整数输出描述
输出两个整数中的较大值示例1
输入:
10 20
输出:
20
C 解法, 执行用时: 2ms, 内存消耗: 304KB, 提交时间: 2021-10-21
#include <stdio.h> int Max(x, y) { if (x > y) { return x; } else { return y; } } int main() { int num1 = 0; int num2 = 0; scanf("%d %d",&num1,&num2); int max = Max(num1, num2); printf("%d\n", max); return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 312KB, 提交时间: 2022-02-09
#include <iostream> using namespace std; int main() { // write your code here...... int a,b; cin>>a>>b; cout<<max(a,b)<<endl; return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 316KB, 提交时间: 2021-12-14
#include <iostream> using namespace std; int main() { int a, b; scanf("%d",&a); scanf("%d",&b); if(a>b) printf("%d",a); else printf("%d",b); return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 320KB, 提交时间: 2021-11-22
#include <iostream> using namespace std; int main() { // write your code here...... int a; int b; cin>>a; cin>>b; cout<<(a>b?a:b)<<endl; return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 384KB, 提交时间: 2022-02-06
#include <iostream> using namespace std; int main() { // write your code here...... int a; int b; cin>>a>>b; cout<< (a>b?a:b) << endl; return 0; }