菜鸟的博客

纵有疾风起,人生不言弃。

导航

上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页

2023年10月3日 #

js书写方法

摘要: 1. 区分大小写 2. 每行结尾的分号可有可无(建议写上) 3. 单行注释:// 4. 多行注释:/*...*/ 5. 大括号表示代码块 //输出语句: <script> window.alert("Hello JavaScript");写入警告框 document.write("Hello Jav 阅读全文

posted @ 2023-10-03 23:50 hhmzd233 阅读(22) 评论(0) 推荐(0) 编辑

2023年9月30日 #

读后感:《程序员修炼之道》第二部分 - 以实践为中心

摘要: 第二部分的《程序员修炼之道》为我打开了一扇通向更高质量代码编写的大门。它强调了编程实践的重要性,提供了一系列关于代码质量、可维护性和效率的宝贵建议。以下是我从这一部分中得到的主要启示: 首先,书中详细讨论了代码的可读性。作者指出,代码应该对人类友好,易于理解。清晰的变量命名、模块化的代码结构和良好的 阅读全文

posted @ 2023-09-30 23:45 hhmzd233 阅读(5) 评论(0) 推荐(0) 编辑

2023年9月29日 #

读后感:《程序员修炼之道》第一部分 - 哲学

摘要: 第一部分的《程序员修炼之道》引领我进入了一场关于编程哲学的探索之旅。它不仅仅是一本技术书籍,更是一本关于如何成为优秀程序员的指南。以下是我的一些主要印象和感悟: 首先,书中明确了作为程序员的责任感。作者们告诉我们,我们不仅仅是代码的书写者,还是问题的解决者。我们需要理解业务需求、用户需求,并将其转化 阅读全文

posted @ 2023-09-29 13:25 hhmzd233 阅读(4) 评论(0) 推荐(0) 编辑

2023.9.28 js引入方式

摘要: 内部脚本:将js代码定义在HTML页面中 JavaScript代码必须位于<script></script>标签之间 在HTML文档中,可以在任意地方,放置任意数量的<script> 一般会把脚本置于<body>元素的底部,可以改善显示速度 外部脚本:将js代码定义在外部js文件中,然后引入到HTM 阅读全文

posted @ 2023-09-29 01:11 hhmzd233 阅读(3) 评论(0) 推荐(0) 编辑

2023年9月27日 #

第四周Java ppt作业

摘要: package Java作业; class father{ private int money; private int getMoney() { return money; } private void setMoney(int money) { this.money = money; } } c 阅读全文

posted @ 2023-09-27 21:51 hhmzd233 阅读(3) 评论(0) 推荐(0) 编辑

2023年9月26日 #

高精度除法

摘要: #include <iostream> #include <vector> #include <algorithm> using namespace std; vector<int> div(vector<int>& A, int& b, int& r) { vector<int> C; r = 0 阅读全文

posted @ 2023-09-26 23:22 hhmzd233 阅读(2) 评论(0) 推荐(0) 编辑

2023年9月25日 #

HTML入门

摘要: <html> <head> <title> HTML入门</title> </head> <body> <h1>hello html</h1> <img src = "1.jpg"> </body> </html> #标签不区分大小写 #标签属性可以用单引号或者双引号 #HTML编写没有非常严格 < 阅读全文

posted @ 2023-09-25 23:10 hhmzd233 阅读(0) 评论(0) 推荐(0) 编辑

2023年9月22日 #

高精度乘法

摘要: 1 #include <iostream> 2 #include <vector> 3 using namespace std; 4 5 vector<int> mul(vector<int>& A, int &b) 6 { 7 vector<int> C; 8 int t = 0; 9 for ( 阅读全文

posted @ 2023-09-22 22:41 hhmzd233 阅读(9) 评论(0) 推荐(0) 编辑

2023年9月21日 #

PPT题目

摘要: 1 //生成一千个随机数 2 public class LinearCongruentialGenerator { 3 private static final long MODULUS = 2147483647; // 2^31 - 1 4 private static final long MU 阅读全文

posted @ 2023-09-21 21:38 hhmzd233 阅读(10) 评论(0) 推荐(0) 编辑

2023年9月20日 #

高精度减法

摘要: ## A-B ~~~c++ #include <iostream> #include <string> #include <vector> using namespace std; //判断是否A>=B bool cmp(vector<int>& A, vector<int>& B) { if (A 阅读全文

posted @ 2023-09-20 23:07 hhmzd233 阅读(3) 评论(0) 推荐(0) 编辑

上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页