fourwords.cpp
来自「C++ sample code, for the book: C++ blac」· C++ 代码 · 共 19 行
CPP
19 行
#include <iostream>
#include <string>
using namespace std;
// Read and display data.
int main()
{
string input1, input2, input3, input4;
cout << "Type four words: ";
cin >> input1 >> input2 >> input3 >> input4;
cout << "You typed: " << input1 << " " << input2 << " ";
cout << input3 << " " << input4 << endl;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?