资源简介
c++primer第五版是入门c++广为人知的著述,笔者也因此学习。
但是本书的源代码所在的官方网站已经失效,因此经过查找,将本书的源代码资源提供给各位学友,谢谢!
代码片段和文件信息
/*
* This file contains code from “C++ Primer Fifth Edition“ by Stanley B.
* Lippman Josee Lajoie and Barbara E. Moo and is covered under the
* copyright and warranty notices given in that book:
*
* “Copyright (c) 2013 by objectwrite Inc. Josee Lajoie and Barbara E. Moo.“
*
*
* “The authors and publisher have taken care in the preparation of this book
* but make no expressed or implied warranty of any kind and assume no
* responsibility for errors or omissions. No liability is assumed for
* incidental or consequential damages in connection with or arising out of the
* use of the information or programs contained herein.“
*
* Permission is granted for this code to be used for educational purposes in
* association with the book given proper citation if and when posted or
* reproduced.Any commercial use of this code requires the explicit written
* permission of the publisher Addison-Wesley Professional a division of
* Pearson Education Inc. Send your request for permission stating clearly
* what code you would like to use and in what specific way to the following
* address:
*
* Pearson Education Inc.
* Rights and Permissions Department
* One Lake Street
* Upper Saddle River NJ 07458
* Fax: (201) 236-3290
*/
#include
int main()
{
// prompt user to enter two numbers
std::cout << “Enter two numbers:“ << std::endl;
int v1 = 0 v2 = 0;
std::cin >> v1 >> v2;
std::cout << “The sum of “ << v1 << “ and “ << v2
<< “ is “ << v1 + v2 << std::endl;
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3370 2012-08-09 16:24 6\arrRet.cpp
文件 1618 2012-08-09 16:24 6\count-calls.cpp
文件 4 2012-08-09 16:24 6\data\mainmath
文件 71 2012-08-09 16:24 6\data\refparms
文件 5265 2012-08-09 16:24 6\errMsg_initList.cpp
文件 1627 2012-08-09 16:24 6\fact.cpp
文件 2814 2012-08-09 16:24 6\fcnptrRet.cpp
文件 1848 2012-08-09 16:24 6\good_printmain.cpp
文件 1962 2012-08-09 16:24 6\inline_shorter.cpp
文件 2019 2012-08-09 16:24 6\LocalMath.cpp
文件 1635 2012-08-09 16:24 6\LocalMath.h
文件 1796 2012-08-09 16:24 6\mainmath.cpp
文件 1716 2012-08-09 16:24 6\mainret.cpp
文件 714 2012-08-09 16:24 6\makefile
文件 1737 2012-08-09 16:24 6\make_plural.h
文件 1648 2012-08-09 16:24 6\mk_plural.cpp
文件 1865 2012-08-09 16:24 6\printFcns.h
文件 305 2012-08-09 16:24 6\README.txt
文件 1735 2012-08-09 16:24 6\ref-fcn.cpp
文件 3851 2012-08-09 16:24 6\refparms.cpp
文件 1764 2012-08-09 16:24 6\refret-ex.cpp
文件 2419 2012-08-09 16:24 6\reset.cpp
文件 334 2012-08-09 16:24 6\runpgms.bat
文件 2456 2012-08-09 16:24 6\stl-arr-fcns.cpp
文件 2350 2012-08-09 16:24 6\usefcnptr.cpp
文件 1839 2012-08-09 16:24 6\use_mk_plural.cpp
文件 2790 2012-08-09 16:47 6\wdebug.cpp
文件 1594 2012-08-09 16:24 7\Account.cpp
文件 2280 2012-08-09 16:24 7\Account.h
文件 1871 2012-08-09 16:24 7\add_item.cpp
............此处省略447个文件信息
相关资源
- The C++ IO Streams and Locales
- C++ Qt5实现RSA加解密
- MD5算法c++程序设计实现
- 链表实现集合的交叉并运算c++.cpp
- QT编写的电子时钟 c++源码
- 学生成绩管理系统C++QT可视化
- 用C++,QT画分形图
- 南航C++课程设计含课设报告
- 华容道基本功能c++实现
- 基于暗通道和导向滤波的图像去雾算
- 学生社团管理系统数据结构课程设计
- python35_d.lib
- C++十进制加减法
- K近邻算法c/c++
- C++实现8方向A*算法
- Pthread 多线程C++动态库+静态库+头文件
- VC++的.cpp文件调用CUDA的.cu文件中的函
- WOA鲸鱼优化算法 C++实现
- 黄金矿工游戏源码c++
- C++API中文版CHM
- windows后台监听键盘事件vs mfc版
- icp C++实现包含测试数据
- 多项式计算
- 诊所信息管理系统C++课程设计报告
- DICOM医学图像格式转换的C++实现
- C++代码提取LBP特征
- 个人银行账户管理程序C++
- 编写并调试一个模拟的进程调度程序
- C++编写的有界面的扫雷游戏
- 遗传算法.cpp
评论
共有 条评论