摘要: 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 阅读全文
posted @ 2021-09-01 17:18 开心果壳好硬 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 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}; 阅读全文
posted @ 2021-08-30 13:51 开心果壳好硬 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 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 = t 阅读全文
posted @ 2021-08-29 14:34 开心果壳好硬 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-08-28 15:25 开心果壳好硬 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 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) 阅读全文
posted @ 2021-08-27 14:33 开心果壳好硬 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-08-25 11:33 开心果壳好硬 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 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 in 阅读全文
posted @ 2021-08-24 18:54 开心果壳好硬 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 1. softmax回归是分类问题 回归(Regression)是用于预测某个值为“多少”的问题,如房屋的价格、患者住院的天数等。 分类(Classification)不是问“多少”,而是问“哪一个”,用于预测某个事物属于哪个类别,如该电子邮件是否是垃圾邮件、该图像是猫还是狗、该用户接下来最有可能看 阅读全文
posted @ 2021-08-21 12:18 开心果壳好硬 阅读(1316) 评论(0) 推荐(0) 编辑