欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

3个整数中最大的数和最小的数

程序员文章站 2022-05-12 10:34:08
...

算法描述:

有3个整数a,b,c,由键盘输入,输出其中最大的数和最小的数。

算法实现:

#include <stdio.h>

int main()
{
	int a, b, c, max, min;
	printf("input three int:");
	scanf("%d, %d, %d", &a, &b, &c);
	if (a < b)
	{
		min = a;
		max = b;
	}
	else
	{
		min = b;
		max = a;
	}
	if (max < c)
		max = c;
	if (min > c)
		min = c;
	printf("max: %d, min: %d", max, min);
	return 0;
}