在哪你都看得到我记住这句话 摘要:解题思路:连续比较两次最大值就好了,省时间和空间注意事项:参考代码:#include<iostream>usingnamespacestd;int …… 题解列表 2026年03月19日 0 点赞 0 评论 17 浏览 评分:0.0
如何避免繁琐思考,直接用关键词输出三个数的最大值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,temp,max; sca…… 题解列表 2026年01月09日 6 点赞 0 评论 611 浏览 评分:10.0
1002: 三个数最大值 摘要:解题思路:三目运算注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int max=0; scanf("%d %d %d&quo…… 题解列表 2025年12月11日 4 点赞 0 评论 789 浏览 评分:3.0
[编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number[3]; int t=0;&…… 题解列表 2025年12月05日 2 点赞 0 评论 479 浏览 评分: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 评论 313 浏览 评分:0.0
求输入三个数的最大值 摘要:解题思路:主要采用了与或非 的方法注意事项:适合我这种没计算机思维的初学者(>__<)参考代码:#include<stdio.h>int main(){  …… 题解列表 2025年11月01日 9 点赞 0 评论 916 浏览 评分:10.0
小白python系列-三个数最大值 摘要:解题思路:小白都能看懂系列=v=参考代码:a,b,c=map(int,input().split())if a>b: if a>c: &…… 题解列表 2025年07月30日 8 点赞 0 评论 1571 浏览 评分:2.0
轻轻松松求解 摘要:先输入abc的值,然后再直接用内置函数就行了注意事项:参考代码:# 使用 split() 分割输入字符串(默认按空格分割)a, b, c = map(int, input("请输入三个整…… 题解列表 2025年07月13日 0 点赞 0 评论 885 浏览 评分:0.0
C++ : 类和两种访问权限的练习 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;const int n=3 ;class MAX{&nb…… 题解列表 2025年03月21日 1 点赞 0 评论 2127 浏览 评分:10.0
三个数最大值 摘要:解题思路:条件表达式注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d%d",&a,…… 题解列表 2025年02月15日 36 点赞 2 评论 4037 浏览 评分:4.3