我无法在我的程序中获得正确的输出,以找到三个数字中的第二大数字。(我知道这真的很基础,但我才刚刚开始学习 C,所以任何帮助和提示将不胜感激!)在我的程序中,我得到了三个数字的最大值和最小值(没有问题),但我一直在得到第二大数字的答案是 204。(这是错误的!)这是我的代码,如果有任何可怕的错误,对不起,就像我说的,我是新手!太感谢了!:)
//include the libraries
#include <stdio.h>
#include <conio.h>
//include the main function
int main()
{
//declare the variables
long a,b,c,min,max,secmax;
//read the variables
printf("a=");scanf("%ld",&a);
printf("b=");scanf("%ld",&b);
printf("c=");scanf("%ld",&c);
// Find the min of the 3 numbers.
if( b>a && c>a)
{
min=a;
}
else
{
min==b || min==c;
}
if( a>b && c>b )
{
min=b;
}
else
{
min==a || min==c;
}
if( a>c && b>c)
{
min=c;
}
else
{
min==a || min==b;
}
// Find the max of the 3 numbers.
if( b>a && b>c)
{
max=b;
}
else
{
max==a || max==c;
}
if( a>b && a>c )
{
max=a;
}
else
{
max==b || max==c;
}
if( c>a && c>a)
{
max=c;
}
else
{
max==a || max==b;
}
//Find the second largest number
if(a!=max && a!=min)
{
a=secmax;
}
else
{
b==secmax || c==secmax;
}
if(b!=max && b!=min)
{
b=secmax;
}
else
{
a==secmax || c==secmax;
}
if(c!=max && c!=min)
{
c=secmax;
}
else
{
b==secmax || a==secmax;
}
//print the output
printf("\nThe maximum is %d\n",max);
printf("\nThe second largest number is %d\n",secmax);
printf("\nThe minimum is %d\n",min);
getch();
return 1;
}