正確的作法是: int x; std::cin >> x; std::cout << x << std::endl;或是這樣做: using std::cin; using std::cout; using std::endl; int x; cin >> x; ...
確定! 回上一頁