操作系统概念第七版习题答案(中文版)完整版.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
科研必备数学工具书 Table Of Integrals, Series And Products 第七版
2023-03-31 14:49:18 7.32MB Table Integrals Series
1
关于OpenGL的图形编程书籍,非常有用。
2023-03-19 12:33:18 10.28MB OpenGL 编程
1
完整版C++大学教程(第七版)].(美)戴特尔课后习题答案,每个章节的习题答案都包含有备注,轻松易懂
2023-03-11 16:29:51 688KB c++ 第七版 戴特尔 答案
1
软件工程实践者的研究方法原版第七版
2023-03-06 09:37:08 79.81MB kaoyan
1
“半人工半机器翻译”,不凌乱,文字逻辑正常,因为全网都找不到这本书的中文版课后答案所以上过计算机英语的我只好自己上阵去翻译这个答案了!当然!其实大部分都是机器翻译的。
2023-02-28 00:08:15 753KB 课后答案 图形学 webgl 中文版
1
有两份资源 一份思考题加习题 英文的 一份思考题答案 中文的
2023-02-20 17:17:04 1.56MB 张昆藏 第七版 思考题中文
1
离散数学及其应用第七版英文版答案,包括奇数题和偶数题。
2023-02-18 22:22:07 6.15MB 离散数学 第七版 答案
1