帮看下这个哪里错了..
初学者... 这是从书上拿下来的好像不行 说是没找到与else 相匹配的 if
#include "stdio.h"
void main()
{
int a,b;
printf("intput the first number:");
scanf("%d",a);
printf("intput the second number:");
scanf("%d",b);
if(a>b);
{
printf("num=%d",b);
}
else
{
printf("num=%d",a);
}
}