[编程入门]三个数最大值 (c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using std::cout;int main(){ int a,b,c; std::cin>>a>>b>>c; …… 题解列表 2023年11月15日 0 点赞 0 评论 81 浏览 评分:0.0
用if else语句。设置一个中间变量用来对比3变量的大小 摘要:解题思路:用if else语句。设置一个中间变量用来对比3变量的大小注意事项:if else 语句的格式与写法 //所有程序在英文环境下写入printf("%d",n); n前要有一个逗…… 题解列表 2023年11月24日 0 点赞 0 评论 79 浏览 评分:0.0
三个数比较大小 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int *bigger(int *a, int *b){ if(*a >= *b) { return a; …… 题解列表 2023年12月06日 0 点赞 0 评论 67 浏览 评分:0.0
一行就够了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d…… 题解列表 2023年12月12日 0 点赞 0 评论 94 浏览 评分:9.9
1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:这里要比较六次参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin >> a>>…… 题解列表 2023年12月17日 0 点赞 0 评论 120 浏览 评分:4.7
笔记 1002: [编程入门]三个数最大值 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2023年12月19日 0 点赞 0 评论 341 浏览 评分:0.0
三数找最大(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); max=…… 题解列表 2023年12月20日 0 点赞 0 评论 80 浏览 评分:0.0
巧用inline函数节省时间 摘要:解题思路:利用inline函数的调用节省了函数调用的时间,但会增加空间的用量注意事项:参考代码:#include<iostream>using namespace std;inline int ans…… 题解列表 2023年12月21日 0 点赞 0 评论 91 浏览 评分:0.0
1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin >> a>>b>…… 题解列表 2023年12月29日 0 点赞 0 评论 103 浏览 评分:0.0
题解 1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:不要抄袭,会遭报应的.参考代码:#inciude <bits/stdc++.b>useing namespece std;int a,s,c;int mein()[ cin>…… 题解列表 2023年12月31日 0 点赞 1 评论 125 浏览 评分:9.9