如何从给定数字中找出最大的整数no
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从给定数字中找出最大的整数no相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x, y, z, result, max;
printf("
Input the first integer: ");
scanf("%d", &x);
printf("
Input the second integer: ");
scanf("%d", &y);
printf("
Input the third integer: ");
scanf("%d", &z);
result=(x+y+abs(x-y))/2;
max=(result+z+abs(result-z))/2;
printf("
Maximum value of three integers: %d", max);
printf("
");
return 0;
}
无法理解公式:结果=(x + y + abs(x-y))/ 2;max =(result + z + abs(result-z))/ 2;
答案
然后解决问题– 5分钟前Ujjwal Bhardwaj
另一答案
下面的代码行返回x
或y
中的较大值。
以上是关于如何从给定数字中找出最大的整数no的主要内容,如果未能解决你的问题,请参考以下文章