#include<stdio.h> int main() { int a,b; a=3; b=20; a=b; printf("a=%d,b=%d\n",a,b); return 0; }
A答案错了
这个答案错了吧,应该是A才对