test.cpp 213 B

123456789101112131415161718
  1. #include <iostream>
  2. #include <sstream>
  3. using namespace std;
  4. // ÖÐÎÄ×¢ÊÍ
  5. int main()
  6. {
  7. string cmd;
  8. cout << "test line end format!" << endl;
  9. while (cin >> cmd)
  10. {
  11. if (cmd == "quit")
  12. break;
  13. }
  14. return 0;
  15. }