学习C++必须选择的好帮助文档啊!里面有很好的编程方法!好有代码!可以直接复制来编写。
2023-04-04 22:14:14 10.21MB C++大学教程
1
C++大学教程(第七版)的示例源代码,详细而规范。 例:// Fig. 2.5: fig02_05.cpp // Addition program that displays the sum of two integers. #include // allows program to perform input and output // function main begins program execution int main() { // variable declarations int number1; // first integer to add int number2; // second integer to add int sum; // sum of number1 and number2 std::cout << "Enter first integer: "; // prompt user for data std::cin >> number1; // read first integer from user into number1 std::cout << "Enter second integer: "; // prompt user for data std::cin >> number2; // read second integer from user into number2 sum = number1 + number2; // add the numbers; store result in sum std::cout << "Sum is " << sum << std::endl; // display sum; end line } // end function main /************************************************************************** * (C) Copyright 1992-2010 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * **************************************************************************/
2023-04-04 21:48:00 1.86MB C++大学教程
1
UNIX&LINUX;大学教程PDF扫描版UNIX&LINUX;大学教程PDF扫描版
2023-03-22 08:33:37 110.93MB UNIX;linux
1
完整版C++大学教程(第七版)].(美)戴特尔课后习题答案,每个章节的习题答案都包含有备注,轻松易懂
2023-03-11 16:29:51 688KB c++ 第七版 戴特尔 答案
1
C语言大学教程(第八版)_教辅资料.rar
2023-03-08 16:47:59 282.92MB
1
C++大学教程(第七版)].(美)戴特尔课后习题答案,建议自己手打过后对照检查使用
2023-02-17 15:31:04 870KB C++大学教程
1
英文书名为"Java how to program(9th Edition),2011年出版,此书暂无中文版
2023-02-01 20:54:20 24.09MB java大学教程
1
本书是全球畅销的C语言教程之一。全书系统地介绍了4种当今流行的程序设计方法――面向过程、基于对象、面向对象以及泛型编程,内容全面、生动、易懂,作者由浅入深地介绍了结构化编程及软件工程的基本概念,从简单的概念到最终的完整的语言描述,清晰、准确、透彻、详细地讲解了C语言,尤其注重程序设计思想和方法的介绍。相对于上一版,这一版在内容方面新增加了C安全程序设计、"更上一层楼”练习集,更新了C++和面向对象程序设计、基于Allegro的游戏编程、C99标准介绍等内容。
2022-12-11 22:59:58 45.71MB C大学教程
1
c语言大学教程(第六版)源程序((美)戴特尔,(美)戴特尔著,苏小红等译
2022-12-11 22:49:44 401KB 源程序
1
一、缓冲区分析 缓冲区分析(Buffer)是研究根据GIS数据库的点、线、面实体,自动建立其周围一定范围内的缓冲区多边形,这是GIS重要的和基本的空间分析功能之一。
2022-12-11 21:16:42 1.68MB GIS 空间分析 大学教程
1