📄 9-getwords.cpp
字号:
//: GetWords.cpp
//Say sth. in here
#include <iostream>
#include <string>
#include <fstream>
#include <vector>
using namespace std;
int main()
{
vector<string> words;
ifstream in("GetWords.cpp");
string word;
while (in >> word)
{
words.push_back(word);
}
for (int i = 0; i < words.size(); i ++)
{
cout << words[i] << endl;
}
}///:~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -