C++ : 类和两种访问权限的练习 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;const int n=3 ;class MAX{&nb…… 题解列表 2025年03月21日 0 点赞 0 评论 238 浏览 评分:0.0
三个数最大值 摘要:解题思路:条件表达式注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d%d",&a,…… 题解列表 2025年02月15日 8 点赞 0 评论 1052 浏览 评分:4.0
三个数求最大值 摘要:解题思路:先默认一个是最大,然后和其他的比较参考代码:#include <stdio.h>main(){ int a,b,c,max; scanf("%d %d %d"…… 题解列表 2025年01月20日 4 点赞 0 评论 874 浏览 评分:0.0
运用‘?’快速判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,max; &n…… 题解列表 2025年01月12日 11 点赞 0 评论 566 浏览 评分:10.0
C语言 一维数组+简单函数解决问题 or 数组+指针解决问题 摘要:解题思路:注意事项:参考代码://方法一:一维数组+函数解决问题#include<stdio.h>#define n 3int compare( int a, int b ){…… 题解列表 2025年01月03日 0 点赞 0 评论 330 浏览 评分:0.0
运用if和else语句实现输出三个数的最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); max=…… 题解列表 2024年12月15日 5 点赞 0 评论 924 浏览 评分:0.0
翁恺解题思路 摘要:解题思路:注意事项:参考代码:#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日 3 点赞 0 评论 401 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值 摘要:解题思路: 假设a是最大值,然后用a与b,c 比较,哪个大就让max等于哪个注意事项:参考代码:#include <stdio.h>int main() { int a, b, c; i…… 题解列表 2024年12月05日 8 点赞 0 评论 561 浏览 评分:9.9
三个数最大值(C语言新手) 摘要:解题思路:用的if else语句嵌套注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(…… 题解列表 2024年11月10日 2 点赞 0 评论 594 浏览 评分:10.0
用与运算解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a>b&&a>…… 题解列表 2024年11月03日 0 点赞 0 评论 163 浏览 评分:0.0