C++PrimerPlus学习——第七章编程练习

感觉变困难了很多,必须要注意细节,不如就会出各种bug
7-1

#include <iostream>
double average(double a, double b);int main()
{using namespace std;double a, b;a = b = 0;cout << "Enter ta number:"  << endl;cin >> a;cout << "Enter another number: " << endl;while (cin >> b && b != 0){double c = average(a, b);cout << "调和平均为" << c << endl;cout << "Enter another number: " << endl;a = b;}return 0;
}double average(double x, double y)
{double c;c = 2.0 * x * y / (x + y);return c;
}

7-2
发现while (std::cin >> si[length] && length <10)在输入10个值的时候会无法退出,改为添加了一个break终止输入

#include <iostream>
struct box
{char maker[40];float height;float width;float length;float volume;
};
int scoreinput(double si[]);
void scoreoutput(double so[], int length);
void averagescore(double as[], int length);int main()
{double score[10];int a = 0;a = scoreinput(score);scoreoutput(score, a);averagescore(score, a);return 0;
}int scoreinput(double si[])
{int length = 0;std::cout << "Please enter the record: (non-number to stop)\n";while (std::cin >> si[length]){length++;if (length >= 10)break;}return length;
}
void scoreoutput(double so[], int length)
{std::cout << "The scores are ";for (int i = 0; i < length; i++)std::cout << so[i] << " ";std::cout << std::endl;
}
void averagescore(double as[], int length)
{double sum = 0;for (int i = 0; i < length; i++)sum += as[i];std::cout << "平均成绩为:" << sum / length << std::endl;
}

7-3

#include <iostream>
struct box
{char maker[40];float height;float width;float length;float volume;
};
void displaybox(box boxs);
void setvolume(box* boxs);int main()
{box *box1 = new box;std::cout << "Please enter box maker and box info(height, width and length): \n";std::cin.get(box1->maker,40);std::cin >> (*box1).height >> (*box1).width >> (*box1).length;setvolume(box1);displaybox(*box1);delete box1;return 0;
}
void displaybox(box boxs)
{std::cout << "The box maker is " << boxs.maker << ".\n";std::cout << "The height, width, and length of the box is " << boxs.height << ", " << boxs.width << ", and " << boxs.length << ".\n";std::cout << "The volume of the box is " << boxs.volume << ".\n";
}
void setvolume(box* boxs)
{boxs->volume = boxs->height * boxs->width * boxs->length;
}

7-4

#include <iostream>
long double probability(unsigned int numbers, unsigned int pick);int main()
{using std::cout;using std::cin;unsigned int n1, n2, p1, p2;cout << "输入普通号码池数量:\n";cin >> n1;cout << "输入普通号码选择数量:\n";cin >> p1;cout << "输入特殊号码池数量:\n";cin >> n2;cout << "输入特殊号码选择数量:\n";cin >> p2;long double probability_1 = probability(n1, p1);long double probability_2 = probability(n2, p1);cout << "中头奖概率为:" << 1/(probability_1 * probability_2);return 0;
}
long double probability(unsigned int numbers, unsigned int pick)
{long double result = 1.0;long double n;unsigned p;for (n = numbers, p = pick; p > 0; n--, p--)result = result * n / p;return result;
}

7-5

#include <iostream>
long double factorial(unsigned int n);int main()
{unsigned int n;std::cout << "输入一个正整数:\n";std::cin >> n;long double result;result = factorial(n);std::cout << n << "! = " << result << "\n";return 0;
}
long double factorial(unsigned int n)
{if (n == 0 || n == 1)return 1;elsereturn n * factorial(n - 1);
}

7-6

#include <iostream>
int Fill_aray(double array[], int length);
void Show_array(double array[], int length);
void Reverse_array(double array[], int length);int main()
{int n = 20;double array[20];n = Fill_aray(array, n);Show_array(array, n);Reverse_array(array, n);std::cout << "逆转后的";Show_array(array, n);Reverse_array(array, n);Reverse_array(array+1, n - 2);std::cout << "逆转除第一项和最后一项得到的";Show_array(array, n);return 0;
}
int Fill_aray(double array[], int length)
{int i = 0;std::cout << "请输入数字:(输入非数字终止)\n";while (std::cin >> array[i]){i++;if (i >= length){std::cout << "数组已被填满\n";break;}}return i;
}
void Show_array(double array[], int length)
{std::cout << "数组为:";for (int i = 0; i < length; i++){std::cout << array[i] << " ";}std::cout << std::endl;
}
void Reverse_array(double array[], int length)
{double temp;for (int i = 0; i < length / 2; i++){temp = array[i];array[i] = array[length - i - 1];array[length - i - 1] = temp;}
}

7-7
要理解指针的意义

#include <iostream>
const int Max = 5;
double* fill_array(double* begin, double* end);
void show_array(double* begin, double* end);
void revalue(double r, double* begin, double* end);int main()
{using namespace std;double properties[Max];double* end = fill_array(properties, properties + Max);show_array(properties, end);cout << "Enter revaluation factor:";double factor;while (!(cin >> factor)){cin.clear();while (cin.get() != '\n')continue;cout << "Bad input; Please enter a number: ";}revalue(factor, properties, end);show_array(properties, end);cout << "Done.\n";cin.get();cin.get();return 0;
}double* fill_array(double* begin, double* end)
{using namespace std;double* i;int j = 0;for (i = begin; i != end; i++){cout << "Enter value #" << (j + 1) << ":";cin >> *i;if (!cin){cin.clear();while (cin.get() != '\n')continue;cout << "Bad input; input process terminated.\n";break;}else if (*i < 0)	break;j++;}return i;
}
void show_array(double* begin, double* end)
{using namespace std;;int j = 0;for (double* i = begin; i != end; i++){cout << "Property#" << (j + 1) << ": $";cout << *i << endl;j++;}
}
void revalue(double r, double* begin, double* end)
{for (double* i = begin; i != end; i++)(*i) *= r;
}

7-8

//(a)
#include <iostream>
#include <array>
#include <string>const int Seasons = 4;
const char* Snames[Seasons] = { "Spring", "Summer", "Fail", "Winter" };void fill(double ex[]);
void show(double ex[]);int main()
{double expenses[4];fill(expenses);show(expenses);return 0;
}void fill(double ex[])
{using namespace std;for (int i = 0; i < Seasons; i++){cout << "Enter " << Snames[i] << " expenses: ";cin >> ex[i];}
}void show(double ex[])
{using namespace std;double total = 0.0;cout << "\nEXPENSES\n";for (int i = 0; i < Seasons; i++){cout << Snames[i] << ": $" << ex[i] << endl;total += ex[i];}cout << "Total Expenses: $" << total << endl;
}
//(b)
#include <iostream>
#include <array>
#include <string>const int Seasons = 4;
const char* Snames[Seasons] = { "Spring", "Summer", "Fail", "Winter" };struct expense
{double exp[Seasons];
};void fill(expense* ex);
void show(expense* ex);int main()
{expense* totalExpenses = new expense;fill(totalExpenses);show(totalExpenses);delete totalExpenses;return 0;
}void fill(expense* ex)
{using namespace std;for (int i = 0; i < Seasons; i++){cout << "Enter " << Snames[i] << " expenses: ";cin >> ex->exp[i];}
}void show(expense* ex)
{using namespace std;double total = 0.0;cout << "\nEXPENSES\n";for (int i = 0; i < Seasons; i++){cout << Snames[i] << ": $" << ex->exp[i] << endl;total += ex->exp[i];}cout << "Total Expenses: $" << total << endl;
}

7-9

#include <iostream>
using namespace std;const int SLEN = 30;struct student {char fullname[SLEN];char hobby[SLEN];int ooplevel;
};int getinfo(student pa[], int n);
void display1(student st);
void display2(const student* ps);
void display3(const student pa[], int n);int main()
{cout << "Enter class size: ";int class_size;cin >> class_size;while (cin.get() != '\n')continue;student* ptr_stu = new student[class_size];int entered = getinfo(ptr_stu, class_size);for (int i = 0; i < entered; i++){display1(ptr_stu[i]);display2(&ptr_stu[i]);}display3(ptr_stu, entered);delete[] ptr_stu;cout << "Done\n";return 0;
}
int getinfo(student pa[], int n)
{using namespace std;int i;for (i = 0; i < n; i++){cout << "Student # " << i + 1 << "\n";cout << "fullname: ";cin.getline(pa[i].fullname, SLEN);cout << "hobby: ";cin.getline(pa[i].hobby, SLEN);cout << "ooplevel: ";cin >> pa[i].ooplevel;cin.get();cout << endl;}return i;
}
void display1(student st)
{using namespace std;cout << "display1";cout << "\nStudent # " << ":";cout << " fullname: " << st.fullname;cout << " hobby: " << st.hobby;cout << " ooplevel: " << st.ooplevel;cout << endl;
}
void display2(const student* ps)
{using namespace std;cout << "display2";cout << "\nStudent #" << ":";cout << " fullname: " << ps->fullname;cout << " hobby: " << ps->hobby;cout << " ooplevel: " << ps->ooplevel;cout << endl;
}
void display3(const student pa[], int n)
{cout << "display3\n";for (int i = 0; i < n; i++){cout << "Student #" << i + 1 <<":";cout << "\nfullname: " << pa[i].fullname;cout << "\nhobby: " << pa[i].hobby;cout << "\nooplevel: " << pa[i].ooplevel;cout << endl;}
}

7-10

#include <iostream>
const int n = 3;
double calculate(double x, double y, double (*pf)(double, double));
double add(double x, double y);
double substract(double x, double y);
double multi(double x, double y);int main()
{using namespace std;double x, y;double(*pf[n])(double, double) = { add, substract, multi };cout << "Enter two numbers: \n";while (cin >> x >> y){for (int i = 0; i < n; i++){double result;result = calculate(x, y, pf[i]);cout << "第" << i + 1 << "个计算结果为:" << result << endl;}}
}double calculate(double x, double y, double (*pf)(double, double))
{	return pf(x, y);
}double add(double x, double y)
{return x + y;
}double substract(double x, double y)
{return x - y;
}double multi(double x, double y)
{return x * y;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/550513.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++PrimerPlus学习——第九章编程练习

前两天有事情去了&#xff0c;没有好好学&#xff0c;之后要补回来 9-1 main.cpp #include <string.h> #include <iostream> #include"golf.h"const int GolfSize 3; int main() {golf ann;setgolf(ann, "Ann Birdfree", 24);showgolf(ann);…

C++PrimerPlus学习——第十一章编程练习

11-1 应该是修改list11.15&#xff0c;当当官方店买的&#xff0c;难道是盗版书吗。。。 打开file之后&#xff0c;操作跟cout类似 vect.h #ifndef VECT_h_ #define VECT_h_ #include <iostream> namespace VECTOR {class Vector{public:enum Mode { RECT, POL };privat…

C++PrimerPlus学习——第十三章编程练习

13-1 注意char*前面加const&#xff0c;不然就会报错 Classis.h #ifndef CLASSIC_H_ #define CLASS_H_ #include <string> class Cd { private:char performers[50];char label[20];int selections;double playtime; public:Cd(const char* s1, const char* s2, int n, …

C++PrimerPlus学习——第十四章编程练习

14-1 参考14.19 winec.h #ifndef WINEC_H_ #define WINEC_H_ #include <string> #include <valarray> using std::string;template<class T1, class T2> class Pair { private:T1 year;T2 bottles; public:Pair() {};Pair(const T1 y, const T2 b) :year(y)…

C++PrimerPlus学习——第十七章编程练习

17-1 不知道有没有理解错题意&#xff0c;参考list17.14 #include <iostream>int main() {using std::cout;using std::cin;using std::endl;char ch;int count 0;while (cin.peek() ! $){cin.get(ch);count;cout << ch;}cout << "\nThere are "…

数字图像处理基础与应用学习,第二章

计算灰度直方图和RGB三个通道的灰度直方图 Tips 1.计算灰度 cv2.calcHist(images, channels, mask, histSize, ranges[, hist[, accumulate ]]) imaes:输入的图像 channels:选择图像的通道 mask:掩膜&#xff0c;是一个大小和image一样的np数组&#xff0c;其中把需要处理的部分…

数字图像处理基础与应用 第四章

3-1 (1) 感觉就是图像模糊了&#xff0c;并没有去噪 from cv2 import cv2 import numpy as np import randomdef spNoise(img,prob):# 添加椒盐噪声,prob:噪声比例 output np.zeros(img.shape,np.uint8)thres 1 - prob for i in range(img.shape[0]):for j in range(img.sha…

数字图像处理基础与应用 第五章

5-1感觉这些方法主体都差不多&#xff0c;就是微分算子不同&#xff0c;懒得一个个写了 from cv2 import cv2 import numpy as np import randomdef singleDirectionsharpen(img, N3):p N // 2img_shape np.shape(img)out np.zeros(img_shape)for i in range(img_shape[0])…

新版scipy中的imread,imsave,imresize被弃用解决方法

阅读文献代码时发现新版scipy中的imread,imsave,imresize被弃用报错 搜索了一下发现可以用imageio中的imread和imsave代替原有的&#xff0c;用numpy的reshape来代替imresize 试了一下&#xff0c;不太行&#xff0c;文献中imread有mode‘L’&#xff0c;即读取灰度图&#xff…

anaconda中tensorflow-estimator版本应与tensorflow-gpu版本相同

把tensorflow升级到2.1.0版本是发现import tensorflow as tf出错 发现是anaconda安装的tensorflow-estimator版本是2.2.0&#xff0c;将版本回退到2.1.0后解决了问题

tf.contrib在tf2中无法使用

在尝试文献中代码时发现tf.comtrib无法使用 官方文档中说 It is still possible to run 1.X code, unmodified (except for contrib), in TensorFlow 2.0: import tensorflow.compat.v1 as tf tf.disable_v2_behavior()除了contrib应该都用能两行代码解决问题,contrib则用kera…

发现了imageio文档中有代替scipy.misc的说明

原文&#xff1a;https://imageio.readthedocs.io/en/latest/scipy.html?highlightimread imageio.imread可以代替scipy.misc.imread 用pilmode代替mode 用as_gray代替flatten pilmode类型&#xff1a; ‘L’ (8-bit pixels, grayscale) ‘P’ (8-bit pixels, mapped to an…

fastai学习笔记——安装

虽然说是推荐linux&#xff0c;windows可能有bug&#xff0c;但是我还是没办法只用linux win10anaconda python3.7 安装很简单 conda install -c fastchan fastai anaconda 好了也没发现有啥问题 测试torch是否可用 import torch cuda.test.is_available()True

fastai学习——第一个bug

跟着视频学习&#xff0c;在运行第一段测试代码的时候出现问题 from fastai.vision.all import * path untar_data(URLs.PETS)/imagesdef is_cat(x): return x[0].isupper() dls ImageDataLoaders.from_name_func(path, get_image_files(path), valid_pct0.2, seed42,label_…

fastai学习:01_intro Questionnaire

fastAI Questionnaire 感觉还挺多的&#xff0c;怪不得说每一课要额外8小时进行学习。 1.Do you need these for deep learning? Lots of math T / F Lots of data T / F Lots of expensive computers T / F A PhD T / F F F F F 2.Name five areas where deep learning is …

fastai学习——第二个问题

第二节课需要使用bing image search api获取bing图片搜索中的熊图片&#xff0c;此时发现获取api需要注册azure&#xff0c;卡在绑定卡上很久&#xff0c;想了想还要去弄一张带visa的卡&#xff0c;还是算了&#xff0c;就用猫狗大战数据集实验吧&#xff0c;按照与学习视频中类…

fastai学习:02_production Questionnaire

1.Where do text models currently have a major deficiency? Deep learning is currently not good at generating correct responses! We don’t currently have a reliable way to, for instance, combine a knowledge base of medical information with a deep learning m…

fastai学习:04_mnist_basics Questionnaire

1.How is a grayscale image represented on a computer? How about a color image? 灰度图&#xff1a;单通道&#xff0c;0-256 彩色图&#xff1a;三通道RGB或HSV&#xff0c;0-256 2.How are the files and folders in the MNIST_SAMPLE dataset structured? Why? 分为…

fastai学习:05_pet_breeds Questionnaire

1.Why do we first resize to a large size on the CPU, and then to a smaller size on the GPU? 首先&#xff0c;在训练模型时&#xff0c;我们希望能够将图片的尺寸统一&#xff0c;整理为张量&#xff0c;传入GPU&#xff0c;我们还希望最大限度地减少执行不同增强计算的…

fastai学习:06_multicat Questionnarie

1.How could multi-label classification improve the usability of the bear classifier? 可以对不存在的熊进行分类 2.How do we encode the dependent variable in a multi-label classification problem? One-hot encoding: Using a vector of zeros, with a one in each…