填空题

程序输入1,输出One,输入其他,输出Other。 main() {scanf("%d",&a); if(a=1)printf("One\n"); else printf("Other\n"); } 错误:______ 改正:______

【参考答案】

错误:if(a=1)