题解 1002: [编程入门]三个数最大值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

翁恺解题思路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;int max=0;scanf("%d%d%d",&a……

用与运算解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;inta,b,c;&nbsp;&nbsp;sca……

宏定义秒了

摘要:解题思路:注意事项:宏定义的变量尽量用(),防止误运算参考代码:#include<stdio.h>#defineMAX(a,b)((a)>(b)?(a):(b))intmain(){……

使用max函数

摘要:解题思路:注意事项:参考代码:l=input().split()&nbsp;#读取输入并分割成列表&nbsp;&nbsp;t=[]&nbsp;#创建一个空列表&……