翁恺解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;int max=0;scanf("%d%d%d",&a,&b,&c);if(a>b){if(a…… 题解列表 2024年12月09日 4 点赞 0 评论 987 浏览 评分:0.0
C语言 一维数组+简单函数解决问题 or 数组+指针解决问题 摘要:解题思路:注意事项:参考代码://方法一:一维数组+函数解决问题#include<stdio.h>#define n 3int compare( int a, int b ){…… 题解列表 2025年01月03日 0 点赞 0 评论 957 浏览 评分:0.0
三个数求最大值 解题思路:先默认一个是最大,然后和其他的比较参考代码:#includemain(){inta,b,c,max;scanf("%d%d%d",&a,&b,&c);max=a;//假设a最大if(max 题解列表 2025年01月20日 12 点赞 0 评论 2556 浏览 评分:0.0 轻轻松松求解 摘要:先输入abc的值,然后再直接用内置函数就行了注意事项:参考代码:# 使用 split() 分割输入字符串(默认按空格分割)a, b, c = map(int, input("请输入三个整…… 题解列表 2025年07月13日 0 点赞 0 评论 1124 浏览 评分:0.0 C++:ctrl c ctrl v 摘要:解题思路:1注意事项:2参考代码:#include<iostream>using namespace std;int main(){ int a,b,c;&nbs…… 题解列表 2025年11月05日 0 点赞 0 评论 466 浏览 评分:0.0 [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number[3]; int t=0;&…… 题解列表 2025年12月05日 2 点赞 0 评论 736 浏览 评分:0.0 在哪你都看得到我记住这句话 摘要:解题思路:连续比较两次最大值就好了,省时间和空间注意事项:参考代码:#include<iostream>usingnamespacestd;int …… 题解列表 2026年03月19日 1 点赞 0 评论 306 浏览 评分:0.0 1002比较三个数的大小cpp写法kirito 解题思路:注意事项:C++中max()一次性只能比较两个元素参考代码:#includeusingnamespacestd;intmain(){doublea,b,c;cin>>a>>b>>c;cout< 题解列表 2026年04月03日 0 点赞 0 评论 356 浏览 评分:0.0 Python解决最大值问题 摘要:解题思路:定义max函数,输入比较输出注意事项:参考代码:def mx( a, b): if a>=b:  …… 题解列表 2026年04月23日 2 点赞 0 评论 327 浏览 评分:0.0 C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b,c; printf("Input three numbers:"); scanf("%d %d %d", &…… 题解列表 2017年06月06日 132 点赞 13 评论 4686 浏览 评分:2.0 « 12...18192021222324...3435 »
轻轻松松求解 摘要:先输入abc的值,然后再直接用内置函数就行了注意事项:参考代码:# 使用 split() 分割输入字符串(默认按空格分割)a, b, c = map(int, input("请输入三个整…… 题解列表 2025年07月13日 0 点赞 0 评论 1124 浏览 评分:0.0
C++:ctrl c ctrl v 摘要:解题思路:1注意事项:2参考代码:#include<iostream>using namespace std;int main(){ int a,b,c;&nbs…… 题解列表 2025年11月05日 0 点赞 0 评论 466 浏览 评分:0.0
[编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number[3]; int t=0;&…… 题解列表 2025年12月05日 2 点赞 0 评论 736 浏览 评分:0.0
在哪你都看得到我记住这句话 摘要:解题思路:连续比较两次最大值就好了,省时间和空间注意事项:参考代码:#include<iostream>usingnamespacestd;int …… 题解列表 2026年03月19日 1 点赞 0 评论 306 浏览 评分:0.0
1002比较三个数的大小cpp写法kirito 解题思路:注意事项:C++中max()一次性只能比较两个元素参考代码:#includeusingnamespacestd;intmain(){doublea,b,c;cin>>a>>b>>c;cout< 题解列表 2026年04月03日 0 点赞 0 评论 356 浏览 评分:0.0 Python解决最大值问题 摘要:解题思路:定义max函数,输入比较输出注意事项:参考代码:def mx( a, b): if a>=b:  …… 题解列表 2026年04月23日 2 点赞 0 评论 327 浏览 评分:0.0 C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b,c; printf("Input three numbers:"); scanf("%d %d %d", &…… 题解列表 2017年06月06日 132 点赞 13 评论 4686 浏览 评分:2.0 « 12...18192021222324...3435 »
Python解决最大值问题 摘要:解题思路:定义max函数,输入比较输出注意事项:参考代码:def mx( a, b): if a>=b:  …… 题解列表 2026年04月23日 2 点赞 0 评论 327 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b,c; printf("Input three numbers:"); scanf("%d %d %d", &…… 题解列表 2017年06月06日 132 点赞 13 评论 4686 浏览 评分:2.0