资源简介
c++大学教程答案啦,有全部代码
代码片段和文件信息
// Calculate the product of three integers
#include // allows program to perform input and output
using namespace std; // program uses names from the std namespace
// function main begins program execution
int main()
{
int x; // first integer to multiply
int y; // second integer to multiply
int z; // third integer to multiply
int result; // the product of the three integers
cout << “Enter three integers: “; // prompt user for data
cin >> x >> y >> z; // read three integers from user
result = x * y * z; // multiply the three integers; store result
cout << “The product is “ << result << endl; // print result; 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. *
**************************************************************************/
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1785 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_05.cpp
文件 1751 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_16.cpp
文件 1480 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_17.cpp
文件 1753 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_18.cpp
文件 2496 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_19.cpp
文件 1618 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_20.cpp
文件 1805 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_21.cpp
文件 2832 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_23.cpp
文件 1605 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_24.cpp
文件 1736 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_25.cpp
文件 1863 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_26.cpp
文件 1560 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_27.cpp
文件 1712 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_28.cpp
文件 2946 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_29.cpp
文件 2016 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_30.cpp
文件 1957 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch02solutions\ex02_31.cpp
文件 2001 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_11\ex03_11.cpp
文件 2601 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_11\GradeBook.cpp
文件 1954 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_11\GradeBook.h
文件 2512 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_12\Account.cpp
文件 1516 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_12\Account.h
文件 2578 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_12\ex03_12.cpp
文件 2500 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_13\ex03_13.cpp
文件 3526 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_13\Invoice.cpp
文件 2193 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_13\Invoice.h
文件 2580 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_14\Employee.cpp
文件 1854 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_14\Employee.h
文件 2812 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_14\ex03_14.cpp
文件 2292 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_15\Date.cpp
文件 1687 2009-08-20 16:51 C++大学教程(第七版)].(美)戴特尔课后习题答案\ch03solutions\Ex03_15\Date.h
............此处省略857个文件信息
相关资源
- 颜色识别形状识别STM103嵌入式代码
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
- mfc 调用redis
- FTP客户端源码(c++)
- c++ 画图(14Qt-XPS)
- c++多边形交并差运算
- VC++基于OpenGL模拟的一个3维空间模型
- c++ 虚拟摄像头
- hook,捕获所有案件,查找所有窗口,
- C语言课设计算器
- c++ 简易贪吃蛇源码
- 高精度加法(c++代码)
- C++调用百度地图案例
- 北京化工大学计算方法(C/C++)讲义
- 基于VC++的SolidWorks二次开发SolidWorks
- 西北大学2015年计算机网络复试真题回
- c++ 模拟鼠标按键
- OFD编辑器
- Beginning C++17 From Novice to Professional
- C++ STL实现
- opencv手部轮廓识别以及轨迹识别
- 百度C++编码规范
- C++ sql2008 WebServer通讯.docx
- c++ 定时关机程序源码
- 基于VSCode和CMake实现C++开发
- c++语法查询工具
- c++ 账务系统源码
- GBT 28169-2011 嵌入式软件 C语言编码规范
- c++ 猜拳小游戏
评论
共有 条评论