#include int main(void) { char c; printf(“請輸入一個字元:”); c = getchar(); putchar(c); putchar('\n'); return 0;} 執行結果:. 請輸入一個字元:AA. 在C 語言中 ...
確定! 回上一頁