资源简介
c++ primer 经典课件,值得看看!!
代码片段和文件信息
/*
* This file contains code from “C++ Primer Fourth Edition“ by Stanley B.
* Lippman Jose Lajoie and Barbara E. Moo and is covered under the
* copyright and warranty notices given in that book:
*
* “Copyright (c) 2005 by objectwrite Inc. Jose 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 Contracts Department
* 75 Arlington Street Suite 300
* Boston MA 02216
* Fax: (617) 848-7047
*/
#include
/* Simple main function: Read two numbers and write their sum */
int main()
{
// prompt user to enter two numbers
std::cout << “Enter two numbers:“ << std::endl;
int v1 v2;
std::cin >> v1 >> v2;
std::cout << “The sum of “ << v1 << “ and “ << v2
<< “ is “ << v1 + v2 << std::endl;
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2005-03-01 19:35 MS_files\
目录 0 2005-02-09 22:24 MS_files\1\
文件 1666 2005-02-09 20:18 MS_files\1\add.cpp
文件 1555 2005-02-09 20:18 MS_files\1\add_item.cpp
文件 1782 2005-02-09 20:18 MS_files\1\add_item2.cpp
文件 2191 2005-02-09 20:18 MS_files\1\avg_price.cpp
文件 1999 2005-02-09 20:19 MS_files\1\count.cpp
目录 0 2005-02-01 19:04 MS_files\1\data\
文件 6 2005-02-01 19:04 MS_files\1\data\add
文件 46 2005-02-01 19:04 MS_files\1\data\add_item
文件 234 2005-02-01 19:04 MS_files\1\data\book_sales
文件 9 2005-02-01 19:04 MS_files\1\data\mysum
文件 1624 2005-02-09 20:19 MS_files\1\forcount.cpp
文件 1476 2005-02-09 20:19 MS_files\1\for_ex.cpp
文件 1614 2005-02-09 20:18 MS_files\1\item_io.cpp
文件 1341 2005-02-09 20:19 MS_files\1\main_only.cpp
文件 389 2005-02-01 19:04 MS_files\1\makefile
文件 1592 2005-02-09 20:20 MS_files\1\mysum.cpp
文件 400 2005-02-01 19:04 MS_files\1\README.TXT
文件 275 2005-03-01 19:51 MS_files\1\runpgms.bat
文件 4350 2005-02-09 20:20 MS_files\1\Sales_item.h
文件 1963 2005-02-09 20:19 MS_files\1\userforcount.cpp
文件 1665 2005-02-09 20:19 MS_files\1\whilecount.cpp
目录 0 2005-02-09 21:42 MS_files\10\
文件 10369 2005-02-09 20:50 MS_files\10\3ed_query.cpp
文件 4422 2005-02-09 20:53 MS_files\10\3ed_query.h
文件 3703 2005-02-09 20:50 MS_files\10\3ed_querymain.cpp
文件 1764 2005-02-09 20:53 MS_files\10\assoc_preamble.h
目录 0 2005-02-01 17:01 MS_files\10\data\
文件 366 2005-02-01 19:02 MS_files\10\data\Alice_story
文件 12 2005-02-01 19:02 MS_files\10\data\remove_words
............此处省略363个文件信息
相关资源
- ini配置文件读写C/C++版本
- C++ Builder 2010 序列号+注册机(破解补
- 简易学生管理系统(C++)
- R树C++代码实现
- c++学习之动态内存运算符
- c++变量引用的学习用例
- 基于c++的格斗游戏
- sha1(C++实现)
- 基于神经网络的车牌识别系统//VC++毕
- 数字水印c++实现
- 用C#和C++实现的进程调度算法程序操作
- 约瑟夫环问题 循环队列实现C++源码
- 随机网络拓扑生成算法c++实现waxman算
- C++ Primer中文版第五版带目录及源码
- 回溯法 0-1背包问题 C++
- c++api中文版
- c++实现的端口映射
- QR分解算法的纯c++代码
- 基于c++的udp传输,传送超过10M的文件
- MFC程序设计-画图板
- 操作系统实验--电梯调度 VC++实现
- C++实现排课程序
- VS2010 C++ ADO读取ACCESS 数据库
- 东北大学c++实验报告214492
- JMAIL邮件发送C++
- 网络流量统计源程序c++
- C++实现的单纯形算法计算程序
- AES加密算法(C++实现)
- 基于C++的火车票管理系统
- 员工管理系统c++
评论
共有 条评论