#include<stdio.h>
void mainc()
{
unsigned long a,b,c,t;
scanf("%d%d%d%d%d",&a,&b,&c,&t);
if(a>b)
if(a>c)
t=a;
else
t=c;
else
if(b>c)
t=b;
else
t=c;
printf("%d",t)
}
楼主,你将a,b,c,t都声明为UNSIGNED LONG类型,在后面输入输出时却都采用格式符%d!,这个就是根源所在
void mainc()
{
unsigned long a,b,c,t;
scanf("%d%d%d%d%d",&a,&b,&c,&t);
if(a>b)
if(a>c)
t=a;
else
t=c;
else
if(b>c)
t=b;
else
t=c;
printf("%d",t)
}
楼主,你将a,b,c,t都声明为UNSIGNED LONG类型,在后面输入输出时却都采用格式符%d!,这个就是根源所在