• 2022-07-26
    以下源程序: #include int main(){ char ch1,ch2; scanf("%c",&ch1); fflush(stdin); scanf("%c",&ch2); fflush(stdin); printf("%c%c",ch1,ch2); return 0;
    } 其编译运行后, 下面哪个输入可以得到:
    AB的输出?
    其中, 表示 #空格, @表示回车
    A: A@B@
    B: AB@
    C: A#B#@
    D: A##B##