为什么会出现语法错误?小白刚学
#include <stdio.h>void main()
{
int a,b;
printf("please input A,B");
scanf("%d%d",&a,&b);
if(a!=b)
{
if(a>b)
{
printf("A>B\n");
else
{
printf("A<B\n");
}
}
}
else
{
printf("A=B\n");
}
} #include <stdio.h>
void main()
{
int a,b;
printf("please input A,B");
scanf("%d%d",&a,&b);
if(a!=b)
{
if(a>b)
{
printf("A>B\n");
}
else
{
printf("A<B\n");
}
}
else
{
printf("A=B\n");
}
}
//你这里的else前面也要有"}"号 lhttxwd 发表于 2021-8-9 21:12
#include
void main()
{
谢谢大佬 lhttxwd 发表于 2021-8-9 21:12
#include
void main()
{
请问大神中间两句是不是就是运用了嵌套的方法?
页:
[1]