主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
2024上岸
2024年2月18日 18:19
三个数的最大值 题解:
P1036
回复 0
|
赞 1
|
浏览 653
#include<iostream> #include<algorithm> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; cout<<max({a,b,c})<<endl; return 0; }
活着的传奇
2023年8月25日 09:55
三个数的最大值 题解:
P1036
回复 0
|
赞 0
|
浏览 693
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; printf("%d",c>(a>b?a:b)?c:(a>b?a:b)); return 0; }
Hegel
2023年3月20日 19:32
三数最大值(三目运算符的使用)
P1036
回复 0
|
赞 0
|
浏览 2.7k
#include <iostream> using namespace std; int main() { int a,b,c; while (cin >> a>>b>>c) { int temp = a>b?a:b; int res = temp>c?temp:c; cout<<res<<endl; } return 0; }
LianG_nnuo
2022年11月11日 21:49
c 简单排序
P1036
回复 0
|
赞 1
|
浏览 3.5k
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<math.h> #include<time.h> #include<malloc.h> void main(){ int i,a[3],max; for(i=0;i<3;i++) { ...
nooknook
2021年11月28日 19:43
C_冒泡排序法求最大值
P1036
回复 0
|
赞 0
|
浏览 7.8k
#include<stdio.h> #define N 3 int main() { int a[N]; int i, j, t; for (int i = 0; i < N; i++) scanf("%d", &a[i]); for (i = 0; i < N; i++) for (j = 0; j < N-1; j++) if (a[j] > a[j + 1]) { t = a[j]; a[j] = a[j + 1]; a[j + 1] = t; }...
A1120161820
2020年3月25日 10:37
三个数的最大值(c++)
P1036
回复 0
|
赞 0
|
浏览 10.7k
#include<iostream> using namespace std; int main() { int a, b, c, ans; cin >> a >> b >> c; ans = a; if (b > ans) ans = b; if (c > ans) ans = c; cout << ans << endl; return 0; }
hectorwill
2020年3月22日 16:49
最大最小值
P1036
回复 0
|
赞 1
|
浏览 9.3k
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<max({a,b,c}); return 0; }
莫小七
2020年2月21日 15:17
1036三个数最大数
P1036
回复 0
|
赞 0
|
浏览 8.2k
#include<iostream> using namespace std; int main(){ int a,b,c; cin >> a >> b >> c; cout << ((a>b?a:b)>c?(a>b?a:b):c); return 0; } 暴力解决!!!
jerry3128
2019年12月23日 20:31
三个数的最大值 <------转换的思想
P1036
回复 1
|
赞 1
|
浏览 8.8k
这又是一道看似与图论无关的题,但我们仔细一想,“选一个”,是限制,“最大”,是要求,我们便很容易想到最大费用最大流,首先源点向一个节点连上一条容量为1,花费为0的边,表示限制。接着便是此节点联想汇点,容量为一,花费为输入的边,表示选择。接下来就是费用流的模板了。 ``` #include<bits/stdc++.h> #define mod long long(1e5+7) #define inf 0x3f3f3f3f using namespace std; long long getint() { &nbs...
题目
三个数的最大值
题解数量
9
发布题解
热门题解
1
最大最小值
2
c 简单排序
3
三个数的最大值 <------转换的思想
4
三个数的最大值 题解:
5
1036三个数最大数
6
三个数的最大值(c++)
7
三数最大值(三目运算符的使用)
8
三个数的最大值 题解:
9
C_冒泡排序法求最大值