[编程入门]三个数找最大值-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String…… 题解列表 2021年01月30日 0 点赞 0 评论 257 浏览 评分:0.0
超简单 可AC(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); if (a < b) …… 题解列表 2018年07月14日 2 点赞 0 评论 602 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)和1002的题目是一样的 摘要:#include<stdio.h> int main() { int a,b,c; printf("\n1.请输入数字:"); scanf("%d", &a); …… 题解列表 2017年06月10日 1 点赞 0 评论 1236 浏览 评分:0.0
[编程入门]三个数找最大值-题解(C++代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年03月11日 0 点赞 0 评论 347 浏览 评分:0.0
用三目操作符求最大值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a=0; int b=0; int c=0; scanf("%d %d %d"…… 题解列表 2024年03月03日 0 点赞 0 评论 91 浏览 评分:0.0
函数调用不用if解决三个数的最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int max(int a,int b){ return a > b? a:b; }int main(){ int a,b,…… 题解列表 2021年07月25日 0 点赞 0 评论 254 浏览 评分:0.0
[编程入门]三个数找最大值-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().split())ls=[a,b,c]#print(ls)print(max(ls))…… 题解列表 2021年01月09日 0 点赞 0 评论 164 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int m; int a[3]; for(int i=0;i<…… 题解列表 2018年05月18日 0 点赞 1 评论 178 浏览 评分:0.0
[编程入门]三个数找最大值-题解(C语言代码)两种写法 摘要: #include int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); i…… 题解列表 2020年05月27日 0 点赞 0 评论 303 浏览 评分:0.0
反正是对的 摘要:解题思路:三目运算符嵌套注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); a>b…… 题解列表 2022年02月20日 0 点赞 0 评论 116 浏览 评分:0.0