100% found this document useful (1 vote)
6 views

Begin to Code with C 1st Edition Rob Miles pdf download

The document provides information about various eBooks available for download, particularly focusing on programming with C and C#. It includes links to multiple titles by Rob Miles and others, along with details about the contents of the 'Begin to Code with C' book. Additionally, it outlines copyright information and usage rights related to Project Gutenberg works.

Uploaded by

dimmreedon
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
6 views

Begin to Code with C 1st Edition Rob Miles pdf download

The document provides information about various eBooks available for download, particularly focusing on programming with C and C#. It includes links to multiple titles by Rob Miles and others, along with details about the contents of the 'Begin to Code with C' book. Additionally, it outlines copyright information and usage rights related to Project Gutenberg works.

Uploaded by

dimmreedon
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 29

Begin to Code with C 1st Edition Rob Miles

download

https://ebookmeta.com/product/begin-to-code-with-c-1st-edition-
rob-miles/

Download more ebook from https://ebookmeta.com


We believe these products will be a great fit for you. Click
the link to download now, or visit ebookmeta.com
to discover even more!

C Programming Yellow Book Rob Miles

https://ebookmeta.com/product/c-programming-yellow-book-rob-
miles/

The Excalibur Code 1st Edition Rob Jones

https://ebookmeta.com/product/the-excalibur-code-1st-edition-rob-
jones/

C Programming Learn to Code 1st Edition Sisir Kumar


Jena

https://ebookmeta.com/product/c-programming-learn-to-code-1st-
edition-sisir-kumar-jena/

Apex Shifter An Urban Fantasy Harem 1st Edition Marcus


Sloss

https://ebookmeta.com/product/apex-shifter-an-urban-fantasy-
harem-1st-edition-marcus-sloss/
Taking Love s Lead H L Day

https://ebookmeta.com/product/taking-love-s-lead-h-l-day/

Beej s Guide to C Programming Brian Beej Jorgensen Hall

https://ebookmeta.com/product/beej-s-guide-to-c-programming-
brian-beej-jorgensen-hall-4/

Go Brain Teasers Exercise Your Mind 1st Edition Miki


Tebeka

https://ebookmeta.com/product/go-brain-teasers-exercise-your-
mind-1st-edition-miki-tebeka/

Did Desert Shield lead to Desert Hate A Case Study of


Anti Americanism in Saudi Arabia 1st Edition Michael
Schmid

https://ebookmeta.com/product/did-desert-shield-lead-to-desert-
hate-a-case-study-of-anti-americanism-in-saudi-arabia-1st-
edition-michael-schmid/

California Magic Academy of Witches 4 5 1st Edition


Erin Bedford

https://ebookmeta.com/product/california-magic-academy-of-
witches-4-5-1st-edition-erin-bedford/
Histories of Anthropology Gabriella D'Agostino

https://ebookmeta.com/product/histories-of-anthropology-
gabriella-dagostino/
Begin to Code with C#

Rob Miles
PUBLISHED BY
Microsoft Press
A Division of Microsoft Corporation
One Microsoft Way
Redmond, Washington 98052-6399
Copyright © 2016 by Rob Miles.
All rights reserved.
No part of the contents of this book may be reproduced or
transmitted in any form or by any means without the written
permission of the publisher.
Library of Congress Control Number: 2015942036
ISBN: 978-1-5093-0115-7
Printed and bound in the United States of America.
First Printing
Microsoft Press books are available through booksellers and
distributors worldwide. If you need support related to this book,
email Microsoft Press Support at mspinput@microsoft.com. Please
tell us what you think of this book at http://aka.ms/tellpress.
This book is provided “as-is” and expresses the authors’ views and
opinions. The views, opinions, and information expressed in this
book, including URL and other Internet website references, may
change without notice.
Some examples depicted herein are provided for illustration only and
are fictitious. No real association or connection is intended or should
be inferred.
Microsoft and the trademarks listed at http://www.microsoft.com on
the “Trademarks” webpage are trademarks of the Microsoft group of
companies. All other marks are the property of their respective
owners.
Acquisitions and Developmental Editor: Devon Musgrave
Project Editor: John Pierce
Editorial Production: Rob Nance and John Pierce
Technical Reviewer: Lance McCarthy; Technical Review services
provided by Content Master, a member of CM Group, Ltd.
Copyeditor: John Pierce
Indexer: Christina Palaia, Emerald Editorial Services
Cover: Twist Creative • Seattle
To Mary
Contents at a glance
Part 1: Programming fundamentals
Chapter 1 Starting out
Chapter 2 What is programming?
Chapter 3 Writing programs
Chapter 4 Working with data in a program
Chapter 5 Making decisions in a program
Chapter 6 Repeating actions with loops
Chapter 7 Using arrays
Part 2: Advanced programming
Chapter 8 Using methods to simplify programs
Chapter 9 Creating structured data types
Chapter 10 Classes and references
Chapter 11 Making solutions with objects
Part 3: Making games
Chapter 12 What makes a game?
Chapter 13 Creating gameplay
Chapter 14 Games and object hierarchies
Chapter 15 Games and software components
Contents
Introduction
Part 1: Programming fundamentals
1 Starting out
Building a place to work
Getting the tools and demos
Using the tools
Visual Studio projects and solutions
Running a program with Visual Studio
Stopping a program running in Visual Studio
The MyProgram application
What you have learned
2 What is programming?
What makes a programmer?
Programming and party planning
Programming and problems
Programmers and people
Computers as data processors
Machines and computers and us
Making programs work
Programs as data processors
Data and information
What you have learned
3 Writing programs
C# program structure
Identify resources
Start a class definition
Declare the StartProgram method
Set the title and display a message
Extra Snaps
SpeakString
Creating new program files
Extra Snaps
Delay
SetTextColor
SetTitleColor
SetBackgroundColor
Creating your own colors
What you have learned
4 Working with data in a program
Starting with variables
Variables and computer storage
Declaring a variable
Simple assignment statements
Using a variable in a program
Assigning values in a declaration
Adding strings together
Working with numbers
Whole numbers and real numbers
Performing calculations
Working with different types of data
Converting numbers into text
Whole numbers and real numbers in programs
Variable types and expressions
Precision and accuracy
Converting types by casting
Using casting on operands in an expression
Types and errors
Extra Snaps
Weather snaps
ThrowDice
What you have learned
5 Making decisions in a program
Understanding the Boolean type
Declaring a Boolean variable
Boolean expressions
Using if constructions and operators
Relational operators
Equality operators
Comparing strings
Creating blocks of statements
Local variables in blocks of code
Creating complex conditions using logical operators
Working with logic
Adding comments to make a program clearer
Funfair rides and programs
Reading in numbers
Building logic using if conditions
Completing the program
Working with program assets
Asset management in Visual Studio
Playing sound assets
Displaying image content
What you have learned
6 Repeating actions with loops
Using a loop to make a pizza picker
Counting selections
Displaying the totals
Getting user options
Adding a while loop
Performing input validation with a while loop
Using Visual Studio to follow the execution of your programs
Counting in a loop to make a times-table tutor
Using a for loop construction
Breaking out of loops
Going back to the top of a loop by using continue
Extra Snaps
Voice input
Secret data entry
What you have learned
7 Using arrays
Have an ice cream
Storing the data in single variables
Making an array
Using an index
Working with arrays
Displaying the contents of the array by using a for loop
Displaying a user menu
Sorting an array using the Bubble Sort
Finding the highest and lowest sales values
Working out the total and the average sales
Completing the program
Multiple dimensions in arrays
Using nested for loops to work with two-dimensional arrays
Making test versions of programs
Finding the length of an array dimension
Using arrays as lookup tables
What you have learned
Part 2: Advanced programming
8 Using methods to simplify programs
What makes a method?
Adding a method to a class
Feeding information to methods by using parameters
Returning values from method calls
Making a tiny contacts app
Reading in contact details
Storing contact information
Using Windows local storage
Using reference parameters to deliver results from a method
call
Displaying the contact details
Adding IntelliSense comments to your methods
What you have learned
9 Creating structured data types
Storing music notes by using a structure
Creating and declaring a structure
Creating arrays of structure values
Structures and methods
Constructing structure values
Making a music recorder
Creating preset arrays
Objects and responsibilities: Making a SongNote play itself
Protecting values held in a structure
Making a drawing program with Snaps
Drawing dots on the screen
Using the DrawDot Snap to draw a dot on the screen
The SnapsCoordinate structure
Using the GetDraggedCoordinate Snap to detect a
drawing position
Using the SetDrawingColor Snap to set the drawing color
Using the ClearGraphics Snap to clear the screen
The SnapsColor structure
Creating enumerated types
Making decisions with the switch construction
Extra Snaps
GetTappedCoordinate
DrawLine
GetScreenSize
PickImage
What you have learned
10 Classes and references
Making a time tracker
Creating a structure to hold contact information
Using the this reference when working with objects
Managing lots of contacts
Making test data
Designing the Time Tracker user interface
Structuring the Time Tracker program
Creating a new contact
Finding customer details
Adding minutes to a contact
Display a summary
Structures and classes
Sorting and structures
Sorting and references
Reference and value types
References and assignments
Classes and constructors
Arrays of class references
From arrays to lists
Working through lists of data
Lists and the index value
Lists of structures
Storing data using JSON
The Newtonsoft JSON library
Storing and recovering lists
Fetching data using XML
What you have learned
11 Making solutions with objects
Creating objects with integrity
Protecting data held inside an object
Providing Get and Set methods for private data
Providing methods that reflect the use of an object
Using properties to manage access to data
Using properties to enforce business rules
Managing the object construction process
Catching and dealing with exceptions
Creating user-friendly applications
Saving drawings in files
SaveGraphicsImageToFileAsPNG
SaveGraphicsImageToLocalStoreAsPNG
LoadGraphicsPNGImageFromLocalStore
The DateTime structure
Getting the current date and time
Fading date and time displays
Using the date and time to make a file name
Creating a Drawing class
Creating a list of drawings
Making the drawing diary methods
What you have learned
Part 3: Making games
12 What makes a game?
Creating a video game
Games and game engines
Games and sprites
What you have learned
13 Creating gameplay
Creating a player-controlled paddle
Adding sound to games
Displaying text in a game
Making a complete game
What you have learned
Other documents randomly have
different content
1.C. The Project Gutenberg Literary Archive Foundation (“the
Foundation” or PGLAF), owns a compilation copyright in the
collection of Project Gutenberg™ electronic works. Nearly all the
individual works in the collection are in the public domain in the
United States. If an individual work is unprotected by copyright
law in the United States and you are located in the United
States, we do not claim a right to prevent you from copying,
distributing, performing, displaying or creating derivative works
based on the work as long as all references to Project
Gutenberg are removed. Of course, we hope that you will
support the Project Gutenberg™ mission of promoting free
access to electronic works by freely sharing Project Gutenberg™
works in compliance with the terms of this agreement for
keeping the Project Gutenberg™ name associated with the
work. You can easily comply with the terms of this agreement
by keeping this work in the same format with its attached full
Project Gutenberg™ License when you share it without charge
with others.

1.D. The copyright laws of the place where you are located also
govern what you can do with this work. Copyright laws in most
countries are in a constant state of change. If you are outside
the United States, check the laws of your country in addition to
the terms of this agreement before downloading, copying,
displaying, performing, distributing or creating derivative works
based on this work or any other Project Gutenberg™ work. The
Foundation makes no representations concerning the copyright
status of any work in any country other than the United States.

1.E. Unless you have removed all references to Project


Gutenberg:

1.E.1. The following sentence, with active links to, or other


immediate access to, the full Project Gutenberg™ License must
appear prominently whenever any copy of a Project
Gutenberg™ work (any work on which the phrase “Project
Gutenberg” appears, or with which the phrase “Project
Gutenberg” is associated) is accessed, displayed, performed,
viewed, copied or distributed:

This eBook is for the use of anyone anywhere in the United


States and most other parts of the world at no cost and
with almost no restrictions whatsoever. You may copy it,
give it away or re-use it under the terms of the Project
Gutenberg License included with this eBook or online at
www.gutenberg.org. If you are not located in the United
States, you will have to check the laws of the country
where you are located before using this eBook.

1.E.2. If an individual Project Gutenberg™ electronic work is


derived from texts not protected by U.S. copyright law (does not
contain a notice indicating that it is posted with permission of
the copyright holder), the work can be copied and distributed to
anyone in the United States without paying any fees or charges.
If you are redistributing or providing access to a work with the
phrase “Project Gutenberg” associated with or appearing on the
work, you must comply either with the requirements of
paragraphs 1.E.1 through 1.E.7 or obtain permission for the use
of the work and the Project Gutenberg™ trademark as set forth
in paragraphs 1.E.8 or 1.E.9.

1.E.3. If an individual Project Gutenberg™ electronic work is


posted with the permission of the copyright holder, your use and
distribution must comply with both paragraphs 1.E.1 through
1.E.7 and any additional terms imposed by the copyright holder.
Additional terms will be linked to the Project Gutenberg™
License for all works posted with the permission of the copyright
holder found at the beginning of this work.

1.E.4. Do not unlink or detach or remove the full Project


Gutenberg™ License terms from this work, or any files
containing a part of this work or any other work associated with
Project Gutenberg™.

1.E.5. Do not copy, display, perform, distribute or redistribute


this electronic work, or any part of this electronic work, without
prominently displaying the sentence set forth in paragraph 1.E.1
with active links or immediate access to the full terms of the
Project Gutenberg™ License.

1.E.6. You may convert to and distribute this work in any binary,
compressed, marked up, nonproprietary or proprietary form,
including any word processing or hypertext form. However, if
you provide access to or distribute copies of a Project
Gutenberg™ work in a format other than “Plain Vanilla ASCII” or
other format used in the official version posted on the official
Project Gutenberg™ website (www.gutenberg.org), you must,
at no additional cost, fee or expense to the user, provide a copy,
a means of exporting a copy, or a means of obtaining a copy
upon request, of the work in its original “Plain Vanilla ASCII” or
other form. Any alternate format must include the full Project
Gutenberg™ License as specified in paragraph 1.E.1.

1.E.7. Do not charge a fee for access to, viewing, displaying,


performing, copying or distributing any Project Gutenberg™
works unless you comply with paragraph 1.E.8 or 1.E.9.

1.E.8. You may charge a reasonable fee for copies of or


providing access to or distributing Project Gutenberg™
electronic works provided that:

• You pay a royalty fee of 20% of the gross profits you derive
from the use of Project Gutenberg™ works calculated using the
method you already use to calculate your applicable taxes. The
fee is owed to the owner of the Project Gutenberg™ trademark,
but he has agreed to donate royalties under this paragraph to
the Project Gutenberg Literary Archive Foundation. Royalty
payments must be paid within 60 days following each date on
which you prepare (or are legally required to prepare) your
periodic tax returns. Royalty payments should be clearly marked
as such and sent to the Project Gutenberg Literary Archive
Foundation at the address specified in Section 4, “Information
about donations to the Project Gutenberg Literary Archive
Foundation.”

• You provide a full refund of any money paid by a user who


notifies you in writing (or by e-mail) within 30 days of receipt
that s/he does not agree to the terms of the full Project
Gutenberg™ License. You must require such a user to return or
destroy all copies of the works possessed in a physical medium
and discontinue all use of and all access to other copies of
Project Gutenberg™ works.

• You provide, in accordance with paragraph 1.F.3, a full refund of


any money paid for a work or a replacement copy, if a defect in
the electronic work is discovered and reported to you within 90
days of receipt of the work.

• You comply with all other terms of this agreement for free
distribution of Project Gutenberg™ works.

1.E.9. If you wish to charge a fee or distribute a Project


Gutenberg™ electronic work or group of works on different
terms than are set forth in this agreement, you must obtain
permission in writing from the Project Gutenberg Literary
Archive Foundation, the manager of the Project Gutenberg™
trademark. Contact the Foundation as set forth in Section 3
below.

1.F.

1.F.1. Project Gutenberg volunteers and employees expend


considerable effort to identify, do copyright research on,
transcribe and proofread works not protected by U.S. copyright
law in creating the Project Gutenberg™ collection. Despite these
efforts, Project Gutenberg™ electronic works, and the medium
on which they may be stored, may contain “Defects,” such as,
but not limited to, incomplete, inaccurate or corrupt data,
transcription errors, a copyright or other intellectual property
infringement, a defective or damaged disk or other medium, a
computer virus, or computer codes that damage or cannot be
read by your equipment.

1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except


for the “Right of Replacement or Refund” described in
paragraph 1.F.3, the Project Gutenberg Literary Archive
Foundation, the owner of the Project Gutenberg™ trademark,
and any other party distributing a Project Gutenberg™ electronic
work under this agreement, disclaim all liability to you for
damages, costs and expenses, including legal fees. YOU AGREE
THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT
EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE
THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY
DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE
TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL,
PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE
NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.

1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you


discover a defect in this electronic work within 90 days of
receiving it, you can receive a refund of the money (if any) you
paid for it by sending a written explanation to the person you
received the work from. If you received the work on a physical
medium, you must return the medium with your written
explanation. The person or entity that provided you with the
defective work may elect to provide a replacement copy in lieu
of a refund. If you received the work electronically, the person
or entity providing it to you may choose to give you a second
opportunity to receive the work electronically in lieu of a refund.
If the second copy is also defective, you may demand a refund
in writing without further opportunities to fix the problem.

1.F.4. Except for the limited right of replacement or refund set


forth in paragraph 1.F.3, this work is provided to you ‘AS-IS’,
WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.

1.F.5. Some states do not allow disclaimers of certain implied


warranties or the exclusion or limitation of certain types of
damages. If any disclaimer or limitation set forth in this
agreement violates the law of the state applicable to this
agreement, the agreement shall be interpreted to make the
maximum disclaimer or limitation permitted by the applicable
state law. The invalidity or unenforceability of any provision of
this agreement shall not void the remaining provisions.

1.F.6. INDEMNITY - You agree to indemnify and hold the


Foundation, the trademark owner, any agent or employee of the
Foundation, anyone providing copies of Project Gutenberg™
electronic works in accordance with this agreement, and any
volunteers associated with the production, promotion and
distribution of Project Gutenberg™ electronic works, harmless
from all liability, costs and expenses, including legal fees, that
arise directly or indirectly from any of the following which you
do or cause to occur: (a) distribution of this or any Project
Gutenberg™ work, (b) alteration, modification, or additions or
deletions to any Project Gutenberg™ work, and (c) any Defect
you cause.

Section 2. Information about the Mission


of Project Gutenberg™
Project Gutenberg™ is synonymous with the free distribution of
electronic works in formats readable by the widest variety of
computers including obsolete, old, middle-aged and new
computers. It exists because of the efforts of hundreds of
volunteers and donations from people in all walks of life.

Volunteers and financial support to provide volunteers with the


assistance they need are critical to reaching Project
Gutenberg™’s goals and ensuring that the Project Gutenberg™
collection will remain freely available for generations to come. In
2001, the Project Gutenberg Literary Archive Foundation was
created to provide a secure and permanent future for Project
Gutenberg™ and future generations. To learn more about the
Project Gutenberg Literary Archive Foundation and how your
efforts and donations can help, see Sections 3 and 4 and the
Foundation information page at www.gutenberg.org.

Section 3. Information about the Project


Gutenberg Literary Archive Foundation
The Project Gutenberg Literary Archive Foundation is a non-
profit 501(c)(3) educational corporation organized under the
laws of the state of Mississippi and granted tax exempt status
by the Internal Revenue Service. The Foundation’s EIN or
federal tax identification number is 64-6221541. Contributions
to the Project Gutenberg Literary Archive Foundation are tax
deductible to the full extent permitted by U.S. federal laws and
your state’s laws.

The Foundation’s business office is located at 809 North 1500


West, Salt Lake City, UT 84116, (801) 596-1887. Email contact
links and up to date contact information can be found at the
Foundation’s website and official page at
www.gutenberg.org/contact
Section 4. Information about Donations to
the Project Gutenberg Literary Archive
Foundation
Project Gutenberg™ depends upon and cannot survive without
widespread public support and donations to carry out its mission
of increasing the number of public domain and licensed works
that can be freely distributed in machine-readable form
accessible by the widest array of equipment including outdated
equipment. Many small donations ($1 to $5,000) are particularly
important to maintaining tax exempt status with the IRS.

The Foundation is committed to complying with the laws


regulating charities and charitable donations in all 50 states of
the United States. Compliance requirements are not uniform
and it takes a considerable effort, much paperwork and many
fees to meet and keep up with these requirements. We do not
solicit donations in locations where we have not received written
confirmation of compliance. To SEND DONATIONS or determine
the status of compliance for any particular state visit
www.gutenberg.org/donate.

While we cannot and do not solicit contributions from states


where we have not met the solicitation requirements, we know
of no prohibition against accepting unsolicited donations from
donors in such states who approach us with offers to donate.

International donations are gratefully accepted, but we cannot


make any statements concerning tax treatment of donations
received from outside the United States. U.S. laws alone swamp
our small staff.

Please check the Project Gutenberg web pages for current


donation methods and addresses. Donations are accepted in a
number of other ways including checks, online payments and
credit card donations. To donate, please visit:
www.gutenberg.org/donate.

Section 5. General Information About


Project Gutenberg™ electronic works
Professor Michael S. Hart was the originator of the Project
Gutenberg™ concept of a library of electronic works that could
be freely shared with anyone. For forty years, he produced and
distributed Project Gutenberg™ eBooks with only a loose
network of volunteer support.

Project Gutenberg™ eBooks are often created from several


printed editions, all of which are confirmed as not protected by
copyright in the U.S. unless a copyright notice is included. Thus,
we do not necessarily keep eBooks in compliance with any
particular paper edition.

Most people start at our website which has the main PG search
facility: www.gutenberg.org.

This website includes information about Project Gutenberg™,


including how to make donations to the Project Gutenberg
Literary Archive Foundation, how to help produce our new
eBooks, and how to subscribe to our email newsletter to hear
about new eBooks.

You might also like