Скачать книгу

      Stephen R. Davis

      Beginning Programming with C++ For Dummies®

      Beginning Programming with C++ For Dummies®, 2nd Edition

      Published by: John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030-5774, www.wiley.com

      Copyright © 2015 by John Wiley & Sons, Inc., Hoboken, New Jersey

      Media and software compilation copyright © 2015 by John Wiley & Sons, Inc. All rights reserved.

      Published simultaneously in Canada

      No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except as permitted under Sections 107 or 108 of the 1976 United States Copyright Act, without the prior written permission of the Publisher. Requests to the Publisher for permission should be addressed to the Permissions Department, John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030, (201) 748-6011, fax (201) 748-6008, or online at http://www.wiley.com/go/permissions.

      Trademarks: Wiley, For Dummies, the Dummies Man logo, Dummies.com, Making Everything Easier, and related trade dress are trademarks or registered trademarks of John Wiley & Sons, Inc. and may not be used without written permission. All other trademarks are the property of their respective owners. John Wiley & Sons, Inc. is not associated with any product or vendor mentioned in this book.

      LIMIT OF LIABILITY/DISCLAIMER OF WARRANTY: THE PUBLISHER AND THE AUTHOR MAKE NO REPRESENTATIONS OR WARRANTIES WITH RESPECT TO THE ACCURACY OR COMPLETENESS OF THE CONTENTS OF THIS WORK AND SPECIFICALLY DISCLAIM ALL WARRANTIES, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE. NO WARRANTY MAY BE CREATED OR EXTENDED BY SALES OR PROMOTIONAL MATERIALS. THE ADVICE AND STRATEGIES CONTAINED HEREIN MAY NOT BE SUITABLE FOR EVERY SITUATION. THIS WORK IS SOLD WITH THE UNDERSTANDING THAT THE PUBLISHER IS NOT ENGAGED IN RENDERING LEGAL, ACCOUNTING, OR OTHER PROFESSIONAL SERVICES. IF PROFESSIONAL ASSISTANCE IS REQUIRED, THE SERVICES OF A COMPETENT PROFESSIONAL PERSON SHOULD BE SOUGHT. NEITHER THE PUBLISHER NOR THE AUTHOR SHALL BE LIABLE FOR DAMAGES ARISING HEREFROM. THE FACT THAT AN ORGANIZATION OR WEBSITE IS REFERRED TO IN THIS WORK AS A CITATION AND/OR A POTENTIAL SOURCE OF FURTHER INFORMATION DOES NOT MEAN THAT THE AUTHOR OR THE PUBLISHER ENDORSES THE INFORMATION THE ORGANIZATION OR WEBSITE MAY PROVIDE OR RECOMMENDATIONS IT MAY MAKE. FURTHER, READERS SHOULD BE AWARE THAT INTERNET WEBSITES LISTED IN THIS WORK MAY HAVE CHANGED OR DISAPPEARED BETWEEN WHEN THIS WORK WAS WRITTEN AND WHEN IT IS READ.

      For general information on our other products and services, please contact our Customer Care Department within the U.S. at 877-762-2974, outside the U.S. at 317-572-3993, or fax 317-572-4002. For technical support, please visit www.wiley.com/techsupport.

      Wiley publishes in a variety of print and electronic formats and by print-on-demand. Some material included with standard print versions of this book may not be included in e-books or in print-on-demand. If this book refers to media such as a CD or DVD that is not included in the version you purchased, you may download this material at http://booksupport.wiley.com. For more information about Wiley products, visit www.wiley.com.

      Library of Congress Control Number: 2014937186

      ISBN 978-1-118-82387-3 (pbk); ISBN 978-1-118-82389-7 (ebk); ISBN 978-1-118-82393-4 (ebk)

      Manufactured in the United States of America

      10 9 8 7 6 5 4 3 2 1

      Introduction

      Welcome to Beginning Programming with C++ For Dummies, Second Edition. This book is intended for the reader who wants to learn to program.

      Somehow over the years, programming has become associated with mathematics and logic calculus and other complicated things. I never quite understood that. Programming is a skill like writing advertising or drawing or photography. It does require the ability to think a problem through, but I’ve known some really good programmers who had zero math skills. Some people are naturally good at it and pick it up quickly, others not so good and not so quick. Nevertheless, anyone with enough patience and “stick-to-itiveness” can learn to program a computer. Even me.

About This Book

      Learning to program necessarily means learning a programming language. This book is based upon the C++ programming language. Versions of the suggested compiler for Windows and Macintosh are included with the online materials accompanying this book. Linux versions are available for download at www.codeblocks.org. (Don’t worry: I include step-by-step instructions for installing the package and building your first program in the book.)

      The goal of this book is to teach you the basics of programming in C++, not to inundate you with every detail of the C++ programming language. At the end of this book, you’ll be able to write a reasonably sophisticated program in C++. You’ll also be in a position to quickly grasp a number of other similar languages, such as Java and C#.NET.

      In this book, you discover what a program is, how it works, plus how to do the following:

      ✔ Install the Code::Blocks C++ compiler and use it to build a program.

      ✔ Create and evaluate expressions.

      ✔ Direct the flow of control through your program.

      ✔ Create data structures that better model the real world.

      ✔ Define and use C++ pointers.

      ✔ Manipulate character strings to generate output the way you want to see it.

      ✔ Write to and read from files.

Foolish Assumptions

      I try to make very few assumptions in this book about the reader, but I do assume the following:

      ✔ You have a computer. Most readers will have computers that run Windows; however, the programs in this book run equally well on Windows, Macintosh, Linux, and Unix. In fact, because C++ is a standardized language, these programs should run on any computer that has a C++ compiler.

      ✔ You know the basics of how to use your computer. For example, I assume that you know how to run a program, copy a file, create a folder, and so on.

      ✔ You know how to navigate through menus. I include lots of instructions such as “Click File and then click Open.” If you can follow that instruction, then you’re good to go.

      ✔ You are new to programming. I don’t assume that you know anything about programming. Heck, I don’t even assume that you know what programming is.

      To help you navigate this book as efficiently as possible, I use a few conventions:

      ✔ C++ terms and other such items you see in computer code are in monofont typeface, like this.

      ✔ New terms are emphasized with italics (and defined).

      ✔ Numbered steps that you need to follow and characters you need to type are set in bold.

      ✔ The programmer in this book is always female and the user is always male. When I say “she types in …” you know I mean the author of the program and when I say “he types in …” you know I mean the user of the program.

      I encourage you to read one part of the book; then put the book away and play with C++ for awhile before moving to the next part. The book is organized so that by the end of each part, you’ve mastered enough new material to go out and write programs.

      I’d like to add the following advice:

      ✔ If you already know what programming is but nothing about C++, you can skip Chapter 1.

      ✔

Скачать книгу