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