• 大小: 11.63MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-12
  • 语言: C/C++
  • 标签: C++  C++  primer  源代码  

资源简介

C++ primer的源代码;C++ primer的源代码;C++ primer的源代码

资源截图

代码片段和文件信息

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


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-04-09 21:49  primer源代码\
     目录           0  2017-04-09 21:50  primer源代码\GCC_4_7_0\
     文件      463485  2017-04-09 21:48  primer源代码\GCC_4_7_0.zip
     目录           0  2017-04-09 21:50  primer源代码\GCC_4_7_0\1\
     目录           0  2017-04-09 21:50  primer源代码\GCC_4_7_0\10\
     文件        2378  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\absInt.cc
     文件        2541  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\accum.cc
     文件        1550  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\accum4.cc
     文件        2177  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\avg_price.cc
     文件        2244  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\bind2.cc
     目录           0  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\
     文件          50  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\absInt
     文件          69  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\accum
     文件         224  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\book_sales
     文件          49  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\count-size
     文件          44  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\iostream_iter
     文件          51  2012-08-09 16:41  primer源代码\GCC_4_7_0\10\data\outFile1
     文件          46  2012-08-09 16:41  primer源代码\GCC_4_7_0\10\data\outFile2
     文件          18  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\rcomma
     文件         685  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\readme
     文件          10  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\reverse-iter
     文件           9  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\data\use_find
     文件        3181  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\elimDups.cc
     文件        1832  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\equal.cc
     文件        1653  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\equiv-istream-iter.cc
     文件        2273  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\inserters.cc
     文件        2307  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\iostream_iter.cc
     文件        2868  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\lambda.cc
     文件         540  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\makefile
     文件        4667  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\newcount-size.cc
     文件        1839  2012-08-09 16:27  primer源代码\GCC_4_7_0\10\ostreamIter2.cc
............此处省略1909个文件信息

评论

共有 条评论