运用if和else语句实现输出三个数的最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf(&qu…… 题解列表 2024年12月15日 1 点赞 0 评论 134 浏览 评分:0.0
翁恺解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;int max=0;scanf("%d%d%d",&a…… 题解列表 2024年12月09日 1 点赞 0 评论 79 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值 摘要:解题思路:假设a是最大值,然后用a与b,c 比较,哪个大就让max等于哪个注意事项:参考代码:#include<stdio.h>intmain(){ &…… 题解列表 2024年12月05日 0 点赞 0 评论 102 浏览 评分:9.9
三个数最大值(C语言新手) 摘要:解题思路:用的ifelse语句嵌套注意事项:参考代码:#include<stdio.h>intmain(){inta,b,c;scanf("%d%d%d",&a…… 题解列表 2024年11月10日 2 点赞 0 评论 316 浏览 评分:0.0
用与运算解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b,c; sca…… 题解列表 2024年11月03日 0 点赞 0 评论 86 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值(三目运算) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,b,c,max;scanf("%d%d%d",&a,&b,…… 题解列表 2024年09月14日 0 点赞 0 评论 71 浏览 评分:0.0
【C语言题解】三个数的最大值 摘要:解题思路: &…… 题解列表 2024年09月08日 0 点赞 0 评论 117 浏览 评分:9.9
宏定义秒了 摘要:解题思路:注意事项:宏定义的变量尽量用(),防止误运算参考代码:#include<stdio.h>#defineMAX(a,b)((a)>(b)?(a):(b))intmain(){…… 题解列表 2024年08月06日 0 点赞 0 评论 37 浏览 评分:9.9
[编程入门]三个数最大值C++与言(懒方法) 摘要:解题思路:三个数最大值用两个max就行注意事项:如下图参考代码:#include <bits/stdc++.h>//万能头using namespace…… 题解列表 2024年07月30日 0 点赞 0 评论 109 浏览 评分:0.0
使用max函数 摘要:解题思路:注意事项:参考代码:l=input().split() #读取输入并分割成列表 t=[] #创建一个空列表&…… 题解列表 2024年07月28日 0 点赞 0 评论 128 浏览 评分:0.0