输出三个整数的最大数(C语言) 摘要:#include<stdio.h> int main() { int arr[3],max=arr[0]; for (int i = 0; i < 3; i++) { scanf…… 题解列表 2023年02月13日 0 点赞 0 评论 193 浏览 评分:0.0
C++:递归函数 摘要:```cpp#includeusing namespace std ;int ko ( int a[] , int len , int &Max ){ if ( len == 0 …… 题解列表 2025年04月18日 0 点赞 0 评论 47 浏览 评分:0.0
2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll myMax(ll a,ll b,l…… 题解列表 2024年11月10日 0 点赞 0 评论 99 浏览 评分:0.0
编写题解 2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:```cpp #include using namespace std; int max(int a,int b,int c){ couta>>b>>c; max(a,b,c); r…… 题解列表 2024年07月25日 0 点赞 0 评论 89 浏览 评分:0.0
编写题解 2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int a(int x,int y,int z){ if(x>=y&&x>=z) …… 题解列表 2024年07月23日 0 点赞 0 评论 342 浏览 评分:0.0
2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll myMax (ll x,ll y,…… 题解列表 2024年06月30日 0 点赞 0 评论 122 浏览 评分:0.0
题解 2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int manba(int a,int b,int c){ if(a>b) { …… 题解列表 2024年06月16日 0 点赞 0 评论 148 浏览 评分:0.0
2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll myMax(ll a,ll b,l…… 题解列表 2024年06月08日 0 点赞 0 评论 105 浏览 评分:0.0
简短求解2247 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年01月09日 0 点赞 0 评论 99 浏览 评分:0.0
2247: 蓝桥杯算法提高-输出三个整数的最大数---三目运算符 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>…… 题解列表 2023年10月27日 0 点赞 0 评论 117 浏览 评分:0.0