习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第1章 开始&&第2章 变量和基本类型 练习1.3 #include<iostream> int main(){ std::cout<<"Hello world"<<std::endl; return 0; } 练习1.4 #include<iostream> int main(){ std::cout <…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第3章 字符串.向量和数组 练习3.2 一次读入一整行 #include<iostream> #include<string> using namespace std; int main() {         string a;         while (getline(cin, a)) {                cout << a <&l…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第4章 表达式 练习4.10 while(cin>>i&&i!=42) 练习4.11 a>b && b>c && c>d 练习4.12 <的优先级大于!=,所以先判断j<k,返回bool类型,再比较返回值和i是否相等 练习4.13 i=3 d=3 i=3 d=3.5 练习4.14 非法.if判断为真 练习4…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第5章 语句 练习5.9 #include<iostream> #include<string> #include<vector> using namespace std; int main() { char t; int cnt = 0; while (cin >> t) { if (t == 'a' || t == 'e' || t == 'i…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第6章 函数 练习6.4 #include<iostream> using namespace std; int fact(int x) { if (x == 1) return x; else return x * fact(x - 1); } int main() { int x; cout << "Please input a number:\n"…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第7章 类 练习7.1 class Sales_data { public: std::string isbn() const { return bookNo; } Sales_data& combine(const Sales_data&); private: std::string bookNo; unsigned units_sold; double revenue; };…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第8章 IO库 练习8.1 istream &iofunc(istream &is) { string s; while (is >> s) { cout << s << endl; } is.clear(); return is; } 练习8.2 #include<iostream> #include<string>…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第9章 顺序容器 练习9.1 a.list,需要按字典序插入,可能插入位置在中间 b.deque,需要在头部和尾部操作 c.vector 练习9.2 list<deque<int>> li; 练习9.4 bool findInt(vector<int> &vec, int x) { for (auto i : vec) { if (i == x) {…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第10章 泛型算法 练习10.1 #include<iostream> #include<algorithm> #include<vector> using namespace std; int main() { int t, n; vector<int> vec; cout << "请输入序列个数:" <&l…
习题答案目录:https://www.cnblogs.com/Mered1th/p/10485695.html 第11章 关联容器 练习11.3 #include<iostream> #include<string> #include<map> using namespace std; int main() { string s; map<string, size_t> num; cout << "输入单词表:" <&l…