AcWing 805. x和y的最大值

简介: AcWing 805. x和y的最大值

文章目录

  • AcWing 805. x和y的最大值
  • AC代码


AcWing 805. x和y的最大值

本题链接:AcWing 805. x和y的最大值

本博客给出本题截图

image.png

AC代码

代码

#include <iostream>
#include <algorithm>
using namespace std;
int max(int x, int y)
{
    if (x > y) return x;
    return y;
}
int main()
{
    int x, y;
    cin >> x >> y;
    cout << max(x, y) << endl;
    return 0;
}


目录
相关文章
|
6月前
|
C++ Python 容器
leetcode-515:在每个树行中找最大值
leetcode-515:在每个树行中找最大值
27 0
|
1月前
acwing 789 数的范围
acwing 789 数的范围
17 4
【Leetcode -605.种花问题 -628.三个数的最大乘积】
【Leetcode -605.种花问题 -628.三个数的最大乘积】
28 0
P1125 [NOIP2008 提高组] 笨小猴(质数判断和快速排序找字符串最大值,最小值)
P1125 [NOIP2008 提高组] 笨小猴(质数判断和快速排序找字符串最大值,最小值)
62 0
【LeetCode 327】区间和的个数
【LeetCode 327】区间和的个数
107 0
|
人工智能 算法 C++
每日算法系列【LeetCode 907】子数组的最小值之和
每日算法系列【LeetCode 907】子数组的最小值之和
111 0
LeetCode 1877. 数组中最大数对和的最小值
一个数对 (a,b) 的 数对和 等于 a + b 。最大数对和 是一个数对数组中最大的 数对和 。
114 0
leetcode515 在每个树行中找最大值
leetcode515 在每个树行中找最大值
52 0
AcWing 614. 最大值
AcWing 614. 最大值
71 0
AcWing 614. 最大值
LeetCode 633. 平方数之和(双指针法)
LeetCode 633. 平方数之和(双指针法)
88 0