1 / 92

Welcome to C++

Welcome to C++. Programming Workshop at The University of Texas at Dallas Presented by John Cole www.utdallas.edu/~John.Cole July 8-12, 2013. What is Programming?. A magic spell you cast over a computer to get it to do what you want. An intensely creative activity

fifi
Télécharger la présentation

Welcome to C++

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Welcome to C++ Programming Workshop at The University of Texas at Dallas Presented by John Cole www.utdallas.edu/~John.Cole July 8-12, 2013

  2. What is Programming? • A magic spell you cast over a computer to get it to do what you want. • An intensely creative activity • Developing software applications & games • Software is not limited to PCs • most complex systems run software • smart phones, game devices, thermostats, even DVD players

  3. Programming … • is NOT a boring or repetitive activity • does NOT require you to sit in a dark room and type at a computer all day! • does NOT (usually) involve complex math • requires logical thinking – technical common sense • write minimal code & combine with existing components to build new applications • Solves customers’ problems & improves quality of life for everyone.

  4. Why learn programming? • It’s fun • Software Engineers get great pay! • Less stressful compared to several other high paying jobs – room for trial & error • Automation continues… • Computers touch our lives more & more every day… • More component based programming  always room for simple programs to do large tasks!

  5. Who Should Learn Programming? • Nearly everyone! • Here’s a video about learning to program

  6. Analogy for learning to program: Learning to ride bicycle • Difficulties for beginners: • Learning to balance & go forward together • Difficulties for experienced folks: • None. • You didn’t learn to ride a bicycle by listening to lectures – you got out there and tried it. You made mistakes, but you learned. Thus we’ll be doing some real programming.

  7. Learning to program:Difficulties for beginners • Syntax errors • struggle for hours to fix syntax errors • Lose confidence • Frustrating experience • Run away & never come back if possible! 2. Logic errors Logic is simple for small programs. It can be an issue if student has mental block against math or logical thinking.

  8. How to reduce difficulties for beginners? • Use the “state of the art” tools like the Microsoft Visual Studio IDE (Integrated Development Environment) to help us! • Some other IDEs are NetBeans, Eclipse, JGRASP, … (Search for “C++ IDE” in the web to learn more) • IDEs take care of mundane steps so that we can focus on learning and programming. • Also, take advantage of expanded libraries provided by new languages and use them as building blocks.

  9. A typical software project development in 1990 New code C standard library Home-grown library

  10. Same project NOW New code Home-grown library Commercial libraries for industry segment IDE modules Open source components C++/Java standard library

  11. A few examples • Recipe to make your favorite food • Assembly instructions for a toy • Coming to college from home What is common about these activities?

  12. A few examples • Recipe to make your favorite food • Assembly instructions for a toy • Coming to college from home What is common about these activities? Sequence

  13. Programming concepts:Sequence structure instruction 1; instruction 2; instruction 3; …

  14. Visual Studio IDE – getting started • Start the tool • Click on New Project icon in top toolbar • If Visual C++ has not been selected, click it. • From the Installed Templates, choose Win32. On the right, make sure Win32 Console Application is selected. • Use a meaningful project name for each project/program. Click on OK.

  15. Getting Started -- Continued • The Win32 Application Wizard will come up. Click Finish. • It will create a CPP source file automatically with some skeleton code.

  16. Sample skeleton code // WorkshopCPP1.cpp : Defines the entry point for the // console application. #include"stdafx.h" int _tmain(intargc, _TCHAR* argv[]) { return 0; }

  17. Your First Program // My first C++ program: Hello World! // #include"stdafx.h" #include<iostream> #include<iomanip> usingnamespacestd; int _tmain(intargc, _TCHAR* argv[]) { cout << "Hello World!"; return0; }

  18. Some Notes • Compiler translates the program to binary executable. • Visual Studio features automatic incremental compilation – syntax errors appear as you type. • It is good to keep the code formatted properly (indentation). Right-click within the editor any time and select Format. • Comments are ignored by the compiler. Comments are used for recording ideas/thoughts in plain English so that we can make sense of the code later. • // is used for one line comment, /* …. */ is used multi-line comments.

  19. More Notes • For the initial sessions, almost all of our code will go into _tmain() function. Do not change anything else. • C++ is case-sensitive. Example: int and Int are treated differently.

  20. Input and Output • There are other ways of doing I/O, but the simplest are these: • Use cout for output, as in: • cout << “Hello World” << endl; • Use cin for intput, as in: • cin >> hours;

  21. Special Characters • Braces {} are used to group statements in C++ • Parentheses () are used to change the order of arithmetic operations, and also for function calls, explained later • Brackets [] are used for array references, explained later • Semicolon ; ends all C++ statements

  22. Structure for simple programs • Input – get the necessary user input • Processing – do some computation • Output – show the results to the user

  23. Problem:Get 5 numbers and output average Enter 5 numbers: 11 12 12 14 15 Average is 12.2 Program output in GREEN, user input in BLUE

  24. Idea/pseudocode: get 5 numbers (say, quiz scores) and output average Prompt & get the score for number1 Prompt & get the score for number2 Prompt & get the score for number3 Prompt & get the score for number4 Prompt & get the score for number5 average = (number1 + number2 + number3 + number4 + number5) / 5 output average

  25. Idea/pseudocode - why? • As the problems become bigger, it is harder to code directly from the problem description. • It is better to capture the logic first, build confidence, then convert it to actual code. • Pseudocode is for human understanding, so plain English is preferred. It can use indentation and language constructs like IF, WHILE, FOR, … but no need to follow any language syntax specifics. • Can contain just high level ideas or detailed instructions that are equivalent to actual code. • Another option is to use Flowcharts, but these occupy too much space and cannot be stored as comments within the source files.

  26. C++ Program #include"stdafx.h" #include<iostream> #include<iomanip> usingnamespacestd; int _tmain(intargc, _TCHAR* argv[]) { int number1, number2, number3, number4, number5; cout << “Enter 5 numbers: “ << endl; cin >> number1; cin >> number2; cin >> number3; cin >> number4; cin >> number5; double average = (number1 + number2 + number3 + number4 + number5) / 5.0; cout << "Average is " << average << endl; } Comments have been removed to conserve space. Assumes project name “add5”

  27. Variables • Placeholders to store values, similar to variables we use in math equations. Names should start with a letter, then they can contain numbers. • You can think of a variable as the name of a place in memory. • Variable names must begin with a letter and can contain letters, numbers, and underscores. You can also begin a variable with an underscore, but I don’t recommend it. http://www.cplusplus.com/doc/tutorial/variables/

  28. Variables, Continued • Popular variable types in C++ are • int to store integer values • double to store real numbers (contains fractions, also too huge or too small values) • string to store text, typically used for messages • Other data types: char, bool, float so on.

  29. Reserved Words • Don’t use the following as identifiers, since in C++ they have special meanings: asm, auto, bool, break, case, catch, char, class, const, const_cast, continue, default, delete, do, double, dynamic_cast, else, enum, explicit, export, extern, false, float, for, friend, goto, if, inline, int, long, mutable, namespace, new, operator, private, protected, public, register, reinterpret_cast, return, short, signed, sizeof, static, static_cast, struct, switch, template, this, throw, true, try, typedef, typeid, typename, union, unsigned, using, virtual, void, volatile, wchar_t, while

  30. Basic/Primitive Data Types short int long char float double long double bool • Primitive data types are built into the C++ language and are not derived from classes. • There are 8 C++ primitive data types.

  31. Numeric Data Types

  32. C++ program: add 5 numbers and output average - notes • Need to use double or float to store average. int data type cannot handle fractional part. • int / int results in integer division - returns the quotient and throws away the remainder. For example, 5 / 2 results in 2, NOT 2.5. • To avoid integer division, at least one operand has to be a real number. Easiest way is to divide the sum by 5.0 instead of 5 (as shown in the code). Another option is to use “double” for all variables.

  33. Problem: compute weighted average • Compute the weighted score based on individual assignments’ scores. Let us say there are only 3 assignments & 2 exams, each with max score of 100. Respective weights are (10%, 10%, 10%, 35% and 35%) • That is, the assignments count 10% each and the exams 35% each.

  34. Operators • Operators do something. Here are some standard ones in C++: • +–Addition • -–Subtraction • /–Division • *–Multiplication (Can’t use x because it can be a variable name. • You’ll see more as we progress.

  35. Sample input & output Enter score for assignment #1: 100 Enter score for assignment #2: 100 Enter score for assignment #3: 100 Enter score for exam #1: 95 Enter score for exam #2: 95 Weighted sum is 96.5%

  36. Idea/Pseudocode Prompt & get the score for assignment1 Prompt & get the score for assignment2 Prompt & get the score for assignment3 Prompt & get the score for exam1 Prompt & get the score for exam2 weightedScore = (assignment1 + assignment2 + assignment3) * 0.1 + (exam1 + exam2) * .35 output weightedScore

  37. C++ Program int _tmain(intargc, _TCHAR* argv[]) { int assign1, assign2, assign3, exam1, exam2; char ans[10]; cout << "Enter assignment 1 score: "; cin >> assign1; cout << "Enter assignment 2 score: "; cin >> assign2; cout << "Enter assignment 3 score: "; cin >> assign3; cout << "Enter exam 1 score: "; cin >> exam1; cout << "Enter exan 2 score: "; cin >> exam2; double sum = assign1 * 0.1 + assign2 * 0.1 + assign3 * 0.1 + exam1 * 0.35 + exam2 * 0.35; cout<< "Average is " << sum << endl; } Comments have been removed to conserve space. Assumes project name “add5”

  38. C++ program : several ways to do same computation double sum = assign1 * 0.1 + assign2 * 0.1 + assign3 * 0.1 + exam1 * 0.35 + exam2 * 0.35; can also be written as double sum = 0.1 * (assign1 + assign2 + assign3) + 0.35 * (exam1 + exam2); (or) double sum = 0.1 * (assign1 + assign2 + assign3); sum += 0.35 * (exam1 + exam2); (or) double sum = 0; sum += 0.1 * (assign1 + assign2 + assign3); sum += 0.35 * (exam1 + exam2);

  39. C++ program : several ways to do same computation … (or) double sum = assign1 * 0.1; sum += assign2 * 0.1; sum += assign3 * 0.1; sum += exam1 * 0.35; sum += exam2 * 0.35; (or) double assignWeight = 0.1; double examWeight = 0.35; double sum = assignWeight * (assign1 + assign2 + assign3) + examWeight * (exam1 + exam2); (or several more ways!) Note: When variable names contain multiple words, C++ convention is to use camel casing – use uppercase for first letter of each additional word. That is why we used variable names like examWeight.

  40. Problem: Country Store Let us say we have a simple store that sells only the following 5 items. Write a program to do the check-out. That is, ask the user to input the weights for each product and output the total price.

  41. Sample input & output Enter weight for Bananas: 2.5 Enter weight for Apples: 3.4 Enter weight for Cucumbers: 2.3 Enter weight for Carrots: 4.5 Enter weight for Oranges: 3.7 Total price is $ 14.13

  42. Pseudocode #1 Prompt & get the weight for Bananas Prompt & get the weight for Apples Prompt & get the weight for Cucumbers Prompt & get the weight for Carrots Prompt & get the weight for Oranges total = bananaWeight * 0.44 + appleWeight * 0.99 + cucumberWeight * 1.19 + carrotWeight * 0.89 + orangeWeight * 0.79 output total

  43. Pseudocode #2 Initialize total to 0 Prompt & get the weight for Bananas total += weight * 0.44 Prompt & get the weight for Apples total += weight * 0.99 Prompt & get the weight for Cucumbers total += weight * 1.19 Prompt & get the weight for Carrots total += weight * 0.89 Prompt & get the weight for Oranges total += weight * 0.79 output total See store.cpp for the code.

  44. Pseudocode #1 vs #2 • 2nd version uses minimal # of variables – reuses weight for all 5 products since individual weights are not needed after computing sub-totals. • Both are acceptable mechanisms!

  45. Activities • Drive car or take DART bus? • Party or study? • Fly or drive? What is the common idea for all these activities?

  46. Activities • Drive car or take DART bus? • Party or study? • Fly or drive? What is the common idea for all these activities? Decision or Selection

  47. Selection structure IF condition is true THEN do this; ELSE do that; ENDIF Note: the ELSE portion is optional.

  48. Selection structure in C++ if (condition) statement; if (condition) statement1; else statement2; if (condition) { statement1; … } else { statement2; … }

  49. if statement – be careful! if (condition) statement1; statement2; is treated by compiler as if (condition) statement1; statement2; Important to use { } when there are multiple statements in the body!

  50. Problem:compute weekly pay with a restriction Get hourly pay rate & # of hours, compute the weekly pay, but do not pay for hours beyond 50.

More Related