输出三个整数中的最大值
#include
int main(void)
{
int a, b, c, z;
scanf_s("%d %d %d", &a, &b, &c);
if (a > b) z = a;
else z = b;
if (z < c) z = c;
printf("最大值为:%d", z);
return 0;
}
输出三个整数中的最大值最先出现在Python成神之路。
#include
int main(void)
{
int a, b, c, z;
scanf_s("%d %d %d", &a, &b, &c);
if (a > b) z = a;
else z = b;
if (z < c) z = c;
printf("最大值为:%d", z);
return 0;
}
输出三个整数中的最大值最先出现在Python成神之路。
共有 0 条评论