C语言比较XYZ最大值

360U3313239642 |浏览466次
收藏|2022/06/25 07:04

满意回答

2022/06/25 07:19

第一个填v,第二个填u=x

akyu2012

其他回答(1)
  • 按你所给的程序进行填空,完整的程序与运行结果如下:#include<stdio.h>void main(){ int x=4,y=8,z=7; int u,v; if (x>y) u=x; else u=y; if (u>z) v=u; else v=z; printf("the max is %d",v);}程序的运行结果显示能找出三个数中的最大数。
    回答于 2022/06/25 07:42
0人关注该问题
+1

 加载中...