C语言三目运算符的使用 摘要:````c#includeintMAX(inta,intb,intc);intmain(){inta,b,c;scanf("%d%d%d",&a,&b,&c…… 题解列表 2019年06月23日 0 点赞 0 评论 396 浏览 评分:0.0
1002题用指针 摘要:```c#includevoidfindmax(inta[],int*max){int*p;*max=*a;//初始化最大值指针变量for(p=a+1;p*max)*max=*p;}}intmain(…… 题解列表 2019年06月17日 0 点赞 3 评论 718 浏览 评分:9.9
[编程入门]三个数最大值 (C语言代码) 摘要:解题思路:就是比大小,简单粗暴注意事项:无参考代码:#include<stdio.h>int main(){int a,b,c,r;scanf(&quo…… 题解列表 2019年05月23日 0 点赞 0 评论 387 浏览 评分:0.0
[编程入门]三个数最大值 (Python代码) 摘要:解题思路:先比较前两个数,找出较大的一个,再与第三个数比较,最终得出的就是最大值首先定义a,b,c三个变量用来存放键盘输入,使用map函数对其数据类型进行定义之后比较a和b,再与c进行比较,最终输出注…… 题解列表 2019年05月14日 2 点赞 0 评论 1112 浏览 评分:8.0
[编程入门]三个数最大值 (Python代码) 摘要:解题思路:sort()排序后输出最后一个值注意事项:input()中记得分割参考代码:lst = list(map(int,input().strip().spli…… 题解列表 2019年05月03日 0 点赞 0 评论 911 浏览 评分:8.4
[编程入门]三个数最大值 (C语言代码) 摘要:解题思路:max=max(max,max)就可以了注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;inta[5];intused[5]…… 题解列表 2019年04月20日 0 点赞 0 评论 874 浏览 评分:0.0
课后习题1.6 (C++代码)max_element 摘要:注意事项:用到max_element参考代码:#include<iostream>#include<algorithm>usingnamespacestd;intmain(){…… 题解列表 2019年03月02日 0 点赞 0 评论 376 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (Java代码) 摘要:解题思路:用三元运算符解题会快,而且代码不多注意事项:三元运算符的定义参考代码:importjava.util.Scanner;publicclassMain{publicstaticvoidmain…… 题解列表 2019年02月25日 0 点赞 0 评论 707 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,b,c;scanf("%d%d%d",&a,&b,&…… 题解列表 2019年02月01日 0 点赞 0 评论 247 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b,c,max;  …… 题解列表 2019年02月01日 0 点赞 0 评论 292 浏览 评分:0.0