c++大学教程(第七版)源程序(这是我收藏的《C++大学教程》作者:((美)戴特尔 著,张引 等译)书中的程序(包括课后习题答案)
2023-10-14 08:01:16 1.52MB 源程序
1
CCNA学习指南 第七版 英文版,原汁原味的英文教材,对Cisco认证考试CCNA很有帮助
2023-09-14 12:59:17 12.35MB CCNA 学习指南 英文版
1
这是同济版第七版高等数学下册教材,自己预习或者考研复习均可参考
2023-09-07 14:00:53 153.71MB 高数
1
826103 计算机网络-自顶向下方法第七版.pdf
2023-08-12 07:37:27 76.94MB
1
动态系统的反馈控制_第七版matlab代码.zip
2023-07-04 16:48:19 488KB 控制系统 动态系统的反馈控制
1
操作系统概念(第七版)课后习题答案 英文版本的
2023-06-25 17:55:18 578KB 操作系统 课后习题 答案 第七版
1
此为优先数调度算法和时间片调度算法两个操作系统实验的源码。 我刚刚完成这两个实验,已验收成功
1
操作系统概念第七版习题答案(中文版)完整版.pdf 内容清晰完整
2023-04-13 10:41:11 4.92MB 操作系统
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
不错的资料,本人在正在学习,可以下来看看,很不错的。
2023-03-31 21:05:25 159.31MB C#
1