if-else永远只执行一个
//猜我的年龄,如果输入的是15,则打印Congratulations,否,则打印No,you are wrong!//#include <stdio.h>
void main()
{ int age;
printf("Guess my age:");
scanf("%d",&age);
if(age=15)
printf("Congratulations!");
else
printf("No, you are wrong!");
}
但我输入1,它也打印congratulations!
这是为什么呢。。。