C primer plus 6 编程练习答案】的更多相关文章

环境:vs2017 /**编程练习2**/ */ #include<stdio.h> int main(void) { printf("张三\n"); printf("张\n三\n"); printf("张"); printf("三\n"); getchar(); ; } */ #include<stdio.h> int main(void) { printf("姓名:张三\n地址:中国\n&…
2.7.1 #include<iostream> int main() { using namespace std; ]; ]; cout << "input name :"; cin >> name; cout << "input address:"; cin >> address; cin.get(); cout << "name is " << name;…
1 // chapter12_1_cow.h 2 3 4 #ifndef LEARN_CPP_CHAPTER12_1_COW_H 5 #define LEARN_CPP_CHAPTER12_1_COW_H 6 7 class Cow { 8 private: 9 char name_[20]; 10 char * hobby_; 11 double weight_; 12 public: 13 Cow(); 14 Cow(const char * name, const char * hobby…
最近开学,事情较多,过两天更新...…
1 // chapter10_1_account.h 2 3 #ifndef LEARN_CPP_CHAPTER10_1_ACCOUNT_H 4 #define LEARN_CPP_CHAPTER10_1_ACCOUNT_H 5 6 #include <iostream> 7 #include <string> 8 9 10 class Account { 11 private: 12 std::string name_; 13 std::string id_; 14 double…
1 // chapter09_golf.h 2 3 #ifndef LEARN_CPP_CHAPTER09_GOLF_H 4 #define LEARN_CPP_CHAPTER09_GOLF_H 5 6 #include <cstring> 7 #include <iostream> 8 9 const int Len = 40; 10 struct golf { 11 char fullname[Len]; 12 int handicap; 13 }; 14 15 void se…
1 void ch8_1_print(const std::string & str, int n = 0 ) { 2 using namespace std; 3 static int flag = 0; 4 ++ flag; 5 if (!n) 6 cout << str << endl; 7 else { 8 for (int i = flag; i; -- i) 9 cout << str << endl; 10 } 11 } 12 void…
1 double ch7_1_harmonicaverage(double a, double b) { 2 return 2 / (1 / a + 1 / b); 3 } 4 5 void ch7_1() { 6 using namespace std; 7 double a{0}, b{0}; 8 while (true) { 9 cout << "a: "; 10 cin >> a; 11 cout << "b: "; 12…
1 void ch6_1() { 2 using namespace std; 3 char ch; 4 while ((ch = cin.get()) != '@') { 5 if (isdigit(ch)) 6 continue; 7 else if (islower(ch)) 8 ch = toupper(ch); 9 else if (isupper(ch)) 10 ch = tolower(ch); 11 cout << ch; 12 } 13 } 14 15 void ch6_2(…
1 void ch5_1() { 2 using namespace std; 3 int small, big, sum{0}; 4 cout << "enter small and big: " << endl; 5 cout << "small: "; cin >> small; 6 cout << "big: "; cin >> big; 7 for (int i =…
1 void ch4_1() { 2 using namespace std; 3 string fname, lname; 4 char grade; 5 unsigned int age; 6 cout << "enter first name: "; 7 getline(cin, fname); 8 cout << "enter last name: "; 9 getline(cin, lname); 10 cout <<…
1 void ch3_1() { 2 using namespace std; 3 unsigned int factor = 12; 4 unsigned int inch, feet; 5 cout << "enter your height in inch:______\b\b\b\b\b\b"; 6 cin >> inch; 7 cout << inch / 12 << " feet and " <<…
1 void ch2_1() { 2 using namespace std; 3 cout << "xxxxxxxx" << endl; 4 } 5 6 void ch2_2() { 7 using namespace std; 8 double num; 9 cout << "please input a distance in long: "; 10 cin >> num; 11 cout << &q…
编程练习答案第八章 8.1写输出字符串的函数,存在默认参数表示输出频率,莫感觉1.(原标题太扯了,的问题的细微变化的基础上,含义) //8.1编写一个输出字符串的函数.有一个默认參数表示输出次数,默觉得1.(原题太扯啦,题意基础上小修改) #include <iostream> using namespace std; void show (const char* str, int time=1) { unsigned n=(time>0)? time:-time; for (unsig…
C++PRIMER第五版练习题答案第一章 应该有很多小伙伴和我一样,闲来无事买了本C++的书自己啃,课后的练习题做的很揪心,这里我分享下我写的答案,希望能帮助到你,提供源码,就不跑了哈,毕竟现在是第一章,很很很基础,当看到后面,分享到后面的时候,注释会写详细点方便大家一起讨论思考~~ 1.1 int main() { return 0; } 1.2 int main() { return -1; } 1.3 #include <iostream> int main() { std::cout&…
6.11.1 #include<iostream> #include<cctype> int main() { using namespace std; char ch; cin.get(ch); while (ch != '@') { if (isdigit(ch)) cout << ch; else if (isupper(ch)) { ch = tolower(ch); cout << ch; } else if (islower(ch)) { ch…
5.9.1 #include<iostream> int main() { using namespace std; ; cout << "input first interger: "; cin >> one; cout << "input second interger: "; cin >> two; for (temp = one; temp <= two; ++temp) sum += tem…
4.13.1 #include<iostream> struct students { ]; ]; char grade; int age; }; int main() { using namespace std; students student1; cout << "What is your fistname? "; cin.).get(); cout << "What is your lastname? "; cin.get…
3.7.1 #include<iostream> int main() { using namespace std; ; int height,inch,foot; cout << "please input your height __ inch\b\b\b\b\b\b\b"; cin >> height; inch = height % unit; foot = height / unit; cin.get(); cout << &q…
C++primer是最经典的c++教材之一,它的经典程度要超过thinking in c++.连thinking in c++作者本人都说他写这本书在某种程度上是让读者更好的理解C++primer.但是,我读书的经验是C++primer写的比thinking in c++好懂. c++编程思想有两卷,两卷加起来知识点比较多,比较全面. c++Primer更适合入门一些. C++ Primer 3rd更多是讲语法,把很多语法细节交待清楚,其实很多内容需要有编程功底,甚至是C++功底,才能懂Stan…
目前正在刷<C++Primer>这本书,会在博客上记录课后习题答案,答案仅供参考. 因为水平有限,如有有误之处,希望大家不吝指教,谢谢! 目录地址 使用的系统为:win 10,编译器:VS2017,答案用markdown写的. 第1章 开始&&第2章 变量和基本类型   第3章 字符串.向量和数组   第4章 表达式   第5章 语句   第6章 函数   第7章 类   第8章 IO库   第9章 顺序容器   第10章 泛型算法   第11章 关联容器   第12章 动态内…
习题答案目录: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…