• 大小:
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-16
  • 语言: C/C++
  • 标签: C++  编程  程序设计  

资源简介

C++ primer第五版(高清版)pdf+全书源代码.zip

资源截图

代码片段和文件信息

/*
 * 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;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件    52803022  2017-01-04 22:53  C++primer第五版.pdf
     目录           0  2018-01-14 23:58  C++Primer第五版课本源代码\
     目录           0  2018-01-14 23:58  C++Primer第五版课本源代码\1\
     目录           0  2018-01-14 23:58  C++Primer第五版课本源代码\10\
     文件        2322  2012-08-16 18:50  C++Primer第五版课本源代码\10\absInt.cpp
     文件        2616  2012-08-16 18:50  C++Primer第五版课本源代码\10\accum.cpp
     文件        1594  2012-08-16 18:50  C++Primer第五版课本源代码\10\accum4.cpp
     文件        2238  2012-08-16 18:50  C++Primer第五版课本源代码\10\avg_price.cpp
     文件        2423  2012-08-16 18:50  C++Primer第五版课本源代码\10\bind2.cpp
     目录           0  2018-01-14 23:58  C++Primer第五版课本源代码\10\data\
     文件          65  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\absInt
     文件          70  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\accum
     文件         234  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\book_sales
     文件          50  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\count-size
     文件          45  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\iostream_iter
     文件          51  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\outFile1
     文件          46  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\outFile2
     文件          19  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\rcomma
     文件         709  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\readme
     文件          11  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\reverse-iter
     文件          12  2012-08-16 18:50  C++Primer第五版课本源代码\10\data\use_find
     文件        3341  2012-08-16 18:50  C++Primer第五版课本源代码\10\elimDups.cpp
     文件        2001  2012-08-16 18:50  C++Primer第五版课本源代码\10\equal.cpp
     文件        1762  2012-08-16 18:50  C++Primer第五版课本源代码\10\equiv-istream-iter.cpp
     文件         350  2012-08-16 18:50  C++Primer第五版课本源代码\10\foo2
     文件        2484  2012-08-16 18:50  C++Primer第五版课本源代码\10\inserters.cpp
     文件        2370  2012-08-16 18:50  C++Primer第五版课本源代码\10\iostream_iter.cpp
     文件        3040  2012-08-16 18:50  C++Primer第五版课本源代码\10\lambda.cpp
     文件         627  2012-08-16 18:50  C++Primer第五版课本源代码\10\makefile
     文件        4647  2012-08-16 18:50  C++Primer第五版课本源代码\10\newcount-size.cpp
     文件        1950  2012-08-16 18:50  C++Primer第五版课本源代码\10\ostreamIter2.cpp
............此处省略444个文件信息

评论

共有 条评论