在校大二学生,喜欢分享,喜欢 Python,vim 党。
暂时未有相关通用技术能力~
阿里云技能认证
详细说明《C++Primer》(第五版)中,3.4.1的例题中使用一个名为text的字符串向量存放文本文件中的数据,输出text中的内容,刚开始我这样写: #include #include #include #include using namespace std; int main(){ string text("name"); for (auto it = text.
《C++ Primer》(第五版)中计算vector对象中的索引这一小节中,举例要求计算各个分数段各有多少个成绩。 代码如下: #include #include #include using namespace std; int main(){ vector scores(11...
练习《C++ Primer》中的3.14节时,当敲入: #include #include using namespace std; int main(){ string word; vector text; while (cin >> word) text.
用惯Windows的同学可能刚开始用Mac的时候并不知道如何写C++,我刚开始在Mac上写C++的时候也遇到过这个困扰,Mac上并没有Windows上自己用习惯的Visual C++,下面我分享一下个人在写C++的时候所用的两个方法: 1.