Tutorial-C/0.run/helloworld.cc
2025-03-25 15:05:55 +08:00

11 lines
202 B
C++

#include <iostream>
int main()
{
using namespace std;
string input;
cout << "你好,世界!" << endl;
cout << "Input> ";
cin >> input;
cout << "Output: " << input << endl;
}