1.编写一个c程序,运行时输入a,b,c三个值,输出其中最大值
收起
编写一个C程序,运行时输入a,b,c三个值,输出其中最大者_kris_paul的博客-CSDN博客 运行环境VS 2019#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ int a, b, c; int max; scanf("%d,%d,%d", &a, &b, &c); if (a > b) { max = a; } else { max = b; } if (max > c) { printf("%d", max); } else { https://blog.csdn.net/kris_paul/article/details/107189760
报告相同问题?