1002: [编程入门]三个数最大值——三目运算符 摘要:解题思路: 利用C/C++语言中的三目运算符 [condition] ? [true_value] : [false_value],迭代进行大小的判别。注意事项: 本题未给出a、b、c三数…… 题解列表 2022年02月23日 0 点赞 0 评论 320 浏览 评分:0.0
1002:新手题2 摘要:解题思路:emmm……也就是if的事了;然后就是……#include<cstdio>#include<iostream>using namespace std;int main(){ float a,…… 题解列表 2022年03月21日 0 点赞 0 评论 303 浏览 评分:0.0
1002: [编程入门]三个数最大值(C++) 摘要:解题思路:先比较a和b两者的最大值,然后再用这个最大值和c比较,最后就可以数出来了注意事项:参考代码:#include<iostream> using namespace std; int mai…… 题解列表 2022年04月20日 0 点赞 0 评论 248 浏览 评分:0.0
[编程入门]三个数最大值[JAVA语言] 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2022年04月23日 0 点赞 0 评论 280 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值 摘要:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; cout<<max(max(a,…… 题解列表 2022年05月07日 0 点赞 0 评论 135 浏览 评分:0.0
个数找最大值 题解(c++超简单,直接) 摘要:解题思路:接用两次max函数找最大的。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){scanf…… 题解列表 2022年05月08日 0 点赞 0 评论 148 浏览 评分:0.0
[编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; cout<…… 题解列表 2022年05月09日 0 点赞 0 评论 253 浏览 评分:0.0
1002: [编程入门]三个数最大值 摘要:import java.io.*; import java.util.Arrays; public class Main { public static BufferedReader…… 题解列表 2022年05月09日 0 点赞 0 评论 168 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值(新手小白两行搞定) 摘要:解题思路:凑字数凑字数注意事项:参考代码:a = list(map(int,input().split()))print(max(a))…… 题解列表 2022年05月31日 0 点赞 0 评论 248 浏览 评分:0.0
三个数最大值,1002 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a, b, c,max; scanf("%d %d %d", &a, &b, &c); max …… 题解列表 2022年06月21日 0 点赞 0 评论 136 浏览 评分:0.0