C++编程思想中文版,内容丰富,翻译不错
2024-03-21 09:10:41 686KB C++编程思想中文版,翻译不错
1
文旦含有java编程思想一书中前9章的PPT 还附有几个基础型的编程代码 如乘法表: public class Chengfabiao { public static void main(String[] args) { for (int i = 1; i <= 9; i++) {// 从1开始循环到9 for (int m = 1; m <= i; m++) {// 从1开始循环到当前数 System.out.print(m + "*" + i + "=" + (i * m) + " ");// 打印数据 } System.out.println();// 换行 } } }
2023-11-21 07:02:44 2.99MB Java编程思想
1
C++编程思想txt版,方便喜欢看电子书的朋友。
2023-10-12 08:02:27 260KB C++编程思想
1
适合初学者与专业人员的经典的面向对象叙述方式,为更新的Java SE5/6增加了新的示例和章节
2023-06-13 13:56:30 5.81MB Java编程思想 Java
1
java 编程思想第4版完整中文高清版PDF
2023-06-05 00:41:01 2.36MB java 编程思想 中文版
1
C#编程思想,介绍在.NET环境下C#语言的基本语法,基本概念。用实例实现,简单易学,可作为C#的入门书
2023-03-29 21:11:52 4.56MB C# 入门
1
【书内资源】【配书源代码】单片机编程魔法师之高级裸编程思想
2023-03-13 09:15:32 1.58MB 单片机编程
1
是volume 1的课后答案,以前从网上下了几个,可是都不是,这个绝对正宗。先给2-1的答案。 2-1 Modify Hello.cpp so that it prints out your name and age (or shoe size, or your dog’s age, if that makes you feel better). Compile and run the program. Solution: The original Hello.cpp appeared in the text as follows: // Saying Hello with C++ #include // Stream declarations using namespace std; int main() { cout << "Hello, World! I am " << 8 << " Today!" << endl; } Here’s my rewrite: //: S02:Hello2.cpp #include using namespace std; int main() { cout << "Hello, World! I am Chuck Allison." << endl; cout << "I have two dogs:" << endl; cout << "Sheba, who is " << 5 << ", and" << endl; cout << "Muffy, who is 8." << endl; cout << "(I feel much better!)" << endl; } /* Output: Hello, World! I am Chuck Allison. I have two dogs: Sheba, who is 5, and Muffy, who is 8. (I feel much better!) */ ///:~ I chose to have separate statements that send output to cout, but I could have printed everything in a single statement if I had wanted, like the example in the text does. Note that in the case of Sheba’s age, I printed 5 as an integer, but for Muffy I included the numeral in the literal text. In this case it makes no difference, but when you print floating-point numbers that have decimals, you get 6 decimals by default. Bruce discusses later in the text how to control output of floating-point numbers.
2023-03-07 10:22:43 261KB thinking c++ 思想 编程
1
《Delphi面向对象编程思想》 - 刘艺 PDF
2023-02-23 18:52:40 18.22MB 刘艺 delphi
1
如何编程思想FIFO和LRU算法,写一个程序来实现本章中介绍的FIFO和LRU页置换算法。首先产生一个随机的页面引用序列,页面数从0~9。将这个序列应用到每个算法并记录发生的页错误的次数。实现这个算法时,要将页帧的数量设为可变(从1~7)。假设使用请求调页。
2022-12-22 09:40:41 198KB 操作系统
1