
C++ Primer Plus 课后编程练习
咖啡与乌龙
这是一个知识分享型宝藏博主,本科测控技术与仪器,硕士电子信息,热爱计算机技术,目前在Sangfor担任后台开发工程师。欢迎大家关注,相互交流,相互学习,共同进步!!!工作繁忙,更新减少,交流问题可私信哦!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++ Primer Plus 第10章 课后编程练习 代码
第一题// 1.头文件//定义类 bank#ifndef BANK_H_#define BANK_H_#include <string>class Bank{private: std::string name; std::string account; double money;public: //创建对象并且初始化,默认构造函数 Bank(); // 默认初始化 Bank(const std::string &原创 2020-08-02 17:05:33 · 304 阅读 · 0 评论 -
C++ Primer Plus 第11章 课后编程练习 代码
第一题// 1.头文件#ifndef VECTOR_H_#define VECTOR_H_#include <iostream>namespace VECTOR{ class Vector { public: enum Mode { RECT, POL }; private: double x; double y;原创 2020-08-03 21:55:04 · 208 阅读 · 0 评论 -
C++ Primer Plus 第9章 课后编程练习 代码
第一题//1.头文件:#ifndef GOLF_H_#define GOLF_H_const int Len = 40;struct golf{ char fullname[Len]; int handicap;};//功能:通过函数参数,设置golf结构//参数:结构引用、指向字符的指针、int//返回:无void setgolf(golf &g, const char *name, int hc);//功能:通过用户输入,来设置结构golf//参数:结原创 2020-08-01 13:44:15 · 360 阅读 · 0 评论 -
C++ Primer Plus 第8章 课后编程练习 代码
第一题#include <iostream>using namespace std;static int count = 0;void print_str(char *str, int n, int &ref = count);int main(){ char *str = (char *)"Hello World!"; cout << "第1次调用:\n"; print_str(str, 0); for (int i = 0; i原创 2020-07-24 20:41:14 · 246 阅读 · 0 评论 -
C++ Primer Plus 第7章 课后编程练习 代码
第1题#include <iostream>double average(double x, double y);int main(){ using namespace std; cout << "Please enter two number(anyone is zero to quit):\n"; double x, y; cin >> x >> y; while (cin.good() &&原创 2020-07-21 12:07:20 · 689 阅读 · 0 评论 -
C++ Primer Plus 第6章 课后编程练习 代码
第1题#include <cctype>#include <iostream>int main(){ using namespace std; cout << "Please input the letters(@ to quit):\n"; char ch; cin.get(ch); while (ch != '@') { if (isupper(ch)) {原创 2020-07-18 22:17:34 · 280 阅读 · 0 评论 -
C++ Primer Plus 第5章 课后编程练习 代码
第1题#include <iostream>int main(){ using namespace std; cout << "Please enter two integers:"; int start, end; cin >> start; // cin.get(); cin >> end; int total = 0; for (int i = start; i <= end;原创 2020-07-18 22:04:15 · 197 阅读 · 0 评论 -
C++ Primer Plus 第4章 课后编程练习 代码
第1题#include <iostream>#include <string>using namespace std;struct student{ char firstname[40]; char lastname[40]; int age; char grade;};int main(){ student std1; cout << "What your first name?"; cin.g原创 2020-07-18 20:51:42 · 269 阅读 · 0 评论 -
C++ Primer Plus 第3章 课后编程练习 代码
第1题#include <iostream>using namespace std;const int trans = 12;typedef struct hight{ int inch; int foot;} Hight;void InchToFoot(double inch);void InchToHight(int inch);int main(){ int inch1; double inch2; cout <<原创 2020-07-18 20:43:09 · 218 阅读 · 0 评论 -
C++ Primer Plus 第2章 课后编程练习 代码
//第一题#include <cctype>#include <iostream>int main(){ using namespace std; cout << "Please input the letters(@ to quit):\n"; char ch; cin.get(ch); while (ch != '@') { if (isupper(ch)) {原创 2020-07-18 20:38:00 · 408 阅读 · 0 评论