会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
pinganxile
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
11
12
13
14
15
16
17
18
下一页
2024年2月16日
《大道至简》读书笔记
摘要: 读书笔记: 《大道至简》第三章 《大道至简》第三章着重探讨了字句的运用和语言的表达。作者通过简洁而深刻的文字,向我们展示了大道至简的真谛。 在这一章中,作者首先指出了字句的重要性。他称字句为语言的精华,是信息传递的最基本单位。他举了一个生动的例子,比较了才华横溢的诗人和平庸的作家,强调字句运用的差异
阅读全文
posted @ 2024-02-16 17:25 平安喜乐×
阅读(42)
评论(0)
推荐(0)
2024年2月15日
大道至简读书笔记
摘要: 在阅读《大道至简》的第一章之后,我深感震撼和启发。作者以简洁明晰的语言,展示了大道至简的哲学思想,传达了一种深邃而卓越的智慧。 首先,本章着重强调了简洁的重要性。作者指出,在这个信息爆炸的时代,人们往往被琐事所困扰,无法专注于自己真正关心的事物。大道至简的思想告诉我们,要学会去除冗杂,专注于核心,从
阅读全文
posted @ 2024-02-15 19:29 平安喜乐×
阅读(62)
评论(0)
推荐(0)
大道至简读后感
摘要: 《大道至简》这本书给我留下了深刻的印象。它以简洁、直观的方式教会我如何用简单的方法解决复杂的问题。这本书的作者通过生动的例子和深入的分析,将一个个看似普通的事物和道理展现在我们面前,让我们看到了其中的奥秘和智慧。 首先,书中强调了“简”与“简单”之间的差异。简单是指事物的简洁明了,容易理解;而“简”
阅读全文
posted @ 2024-02-15 18:25 平安喜乐×
阅读(74)
评论(0)
推荐(0)
2024年2月14日
模板
摘要: #include<iostream> using namespace std; template <class T,int n> class mysequence { T memblock[N]; public: void setmember(int x, T value) { memblock[x
阅读全文
posted @ 2024-02-14 18:27 平安喜乐×
阅读(17)
评论(0)
推荐(0)
2024年2月12日
最佳存款方案
摘要: 假设银行一年整存领取的月息是0.63%。现在某人手中有一笔钱,他打算在今后的5年中的每年年底取出1000元,到第5年时刚好取完,请算出他存钱时应存入多少? 代码如下: #include <stdio.h>int main(){ int i; double money=0.0; for(i=0;i<5
阅读全文
posted @ 2024-02-12 17:50 平安喜乐×
阅读(49)
评论(0)
推荐(0)
2024年2月11日
类的虚函数测试
摘要: #include<iostream>using namespace std;class BaseClass{public: void fn2() { cout << "我是base的fn2" << endl; } void fn1() { cout << "我是base的fn1" << endl;
阅读全文
posted @ 2024-02-11 18:13 平安喜乐×
阅读(26)
评论(0)
推荐(0)
2024年2月10日
形状类
摘要: #include<iostream>using namespace std;class Shape{public: virtual void getArea() {} virtual void getPerim() {} };class Rectangle :public Shape{private
阅读全文
posted @ 2024-02-10 19:27 平安喜乐×
阅读(19)
评论(0)
推荐(0)
2024年2月3日
计算
摘要: #include<iostream>#include<cmath>using namespace std;class point{private: double x, y, z;public: point(double x1, double y1, double z1) { x = x1; y =
阅读全文
posted @ 2024-02-03 19:33 平安喜乐×
阅读(46)
评论(0)
推荐(0)
2024年2月2日
指向对象数组的对象指针
摘要: #include<iostream>using namespace std;class student{public: student(int n, float s) :num(n), score(s) { } void display(void);private: int num; float s
阅读全文
posted @ 2024-02-02 17:26 平安喜乐×
阅读(19)
评论(0)
推荐(0)
2024年2月1日
测验一
摘要: #include <iostream>#include <iomanip>using namespace std;class matrix {private: int row, column; int** mat;public: matrix(const matrix& mx) { this->ro
阅读全文
posted @ 2024-02-01 20:36 平安喜乐×
阅读(29)
评论(0)
推荐(0)
上一页
1
···
11
12
13
14
15
16
17
18
下一页
公告