作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include <iostream>
#include <cstdio>
using namespace std;
int max_of_four(int a, int b, int c, int d)
{
return( max((a,b),max(c,d)));
}
int main()
{
int a, b, c, d;
scanf("%d %d %d %d", &a, &b, &c, &d);
int ans = max_of_four(a, b, c, d);
printf("%d", ans);
return 0;
}
我在 hackerRank 上运行了这段代码。这段代码对于其他测试用例表现良好除了:17 13 3 15
其输出:15
我还尝试运行 max(a,b) 17 13它正确地输出 17。
请帮忙!
最佳答案
您忘记在此处输入max
return(max((a,b),max(c,d)));
应该是return( max(max(a,b),max(c,d)));
顺便说一句,您实际上不需要 return
之后的括号,因为它们只会使代码变得更重并导致括号过多。
关于c++ - 为什么这个 C++ 程序不适用于 17 13 3 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32635088/
我是一名优秀的程序员,十分优秀!