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

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

筛选

课后习题1.6 利用三目运算

摘要:参考代码:#include<stdio.h>int main(){ int i,s,w,t; printf("请输入三个值"); scanf("%d%d%d",&i,&s,&w); if( i>s ?……