Presentation is loading. Please wait.

Presentation is loading. Please wait.

The Hashemite University Computer Engineering Department

Similar presentations


Presentation on theme: "The Hashemite University Computer Engineering Department"— Presentation transcript:

1 The Hashemite University Computer Engineering Department
C++ Programming Language Lecture 2 Problem Analysis and Solution Representation The Hashemite University Computer Engineering Department (Adapted from the textbook slides)

2 The Hashemite University
Outline Program development cycle. Algorithms development and representation. Examples. The Hashemite University

3 Program Development Cycle
Program development cycle steps: Problem definition. Problem analysis (understanding). Algorithm development: Ways for algorithm representation: Human language Pseudocode. Flowcharts (also called UML activity diagram). Coding. Execution and testing. Maintenance. Recall that such cycle and all the techniques presented in this lecture are the same for any programming language you want to use not only for C++. The Hashemite University

4 The Hashemite University
Problem Definition To understand the problem is half the solution. Describe it by precise, up to the point statements that will make both analyzing and solving the problem easier and clearer. The Hashemite University

5 The Hashemite University
Problem Analysis Determine the inputs, outputs, and the required operations. Explore all possible solutions. Pick the easiest, in terms of implementation cost (space, time) one. The Hashemite University

6 Algorithm Development
Algorithm is a procedure that determines the: Actions to be executed. Order in which these actions are to be executed (which is called program control and in industry it is called work flow). So, it is a plan for solving the given problem. You must validate the developed algorithm, i.e. make sure that it solves the correct problem. You must verify the developed algorithm, i.e. make sure that it produces correct results. You must check the feasibility (in terms of the needed resources, ease of implementation, ease of understanding and debugging, its expected execution time, etc.) of the developed algorithm. The Hashemite University

7 Algorithm Representation – Human Language
Use your own language to represent the steps of the developed algorithm. Example: adding two integers: 1. Prompt the user to enter two numbers. 2. Add them and store the result. 3. Display the sum to the user on the screen. The Hashemite University

8 Algorithm Representation – Pseudocode
Artificial, informal language used to develop algorithms. Kind of structured English for describing algorithms. Middle approach between human language and C++ code. It is convenient and user friendly. Not actually executed on computers Allows us to “think out” a program before writing the code for it Usually easy to convert into a corresponding C++ program Consists only of executable statements, i.e. no definitions or declarations. The Hashemite University

9 Pseudocode Notations I
Input: Input from keyboard: Get. Input from file or memory location: Read. Output: Output to printer: Print. Output to file: Write. Output to screen: Display, Prompt (usually followed by Get). Values assignment: Initial values: Initialize, Set. Results of computation: =, . Keeping variables for later use: Save, Store. The Hashemite University

10 Pseudocode Notations II
Arithmetic computation: Either use exact operators (+, *, /, -) or equivalent words of them (add, multiply, divide, subtract). Computations: either use Compute or represent the actual operation mathematically. E.g. Compute average or avg = sum/count. Control structures: Use the actual words as it is: If, If – then – Else, While , do – While, For – to --, ... Relational operators: Write them as words: greater then, less than or equal, etc. Or you can use their symbols: >, <=, etc. The Hashemite University

11 The Hashemite University
Pseudocode Examples Adding two numbers: 1. Prompt user for number1 2. Get number1 3. Prompt user for number2 4. Get number2 5. Add number1 and number2 6. Set sum to the result 7. Display sum Other examples (on board): Deciding the grade (A-F) of a student. The Hashemite University

12 Algorithm Representation – Flowcharts
Represent the algorithms or computer programs execution steps graphically. The American National Standards Institute (ANSI) published a standard for flowcharts that includes a definition of their symbols (see next slide). Pseudocode is preferred over flowcharts since: More readable. Can be converted into C++ code easier. Flow charts are very similar to the UML (Unified Modeling Language) activity diagram with some differences in the used symbols. UML is an industry standard for modeling software systems. We will study flowcharts not activity diagrams in this course. The Hashemite University

13 The Hashemite University
Flowcharts Symbols The Hashemite University

14 The Hashemite University
Flowchart Examples Numbers addition example. The Hashemite University

15 The Hashemite University
Example III Write a program that reads three numbers from a file. If the multiplication of these numbers is greater than or equal their sum then print “Winner” on the screen”, otherwise print “Loser” on the screen. Solution: On board. The Hashemite University

16 The Hashemite University
Example I Symbol grading system: Deciding the grade (A-F) of a student. Solution: On board. The Hashemite University

17 The Hashemite University
Example II Car Purchase System: Write a program that prompt the user to enter the money balance that is available with him and based on available cars models prices it will select the best car that the user can buy. The result will be printed on the screen. Solution: On board. The Hashemite University

18 The Hashemite University
Coding Writing the source code of your solution that is to convert the developed algorithm into code statements of the used language, i.e. C++. Some useful tips: Make sure of using correct syntax. Use meaningful identifiers to make your code more readable. Add suitable documentation and comments. Make your code modular or structured as possible. The Hashemite University

19 The Hashemite University
Execution and Testing Compilation and debugging. Types of errors: Syntax errors (Compile time errors): Errors caught by compiler Logical errors (Runtime errors): Errors which have their effect at execution time Non-fatal logic errors program runs, but has incorrect output Fatal logic errors program exits prematurely Tracing to verify your program with different sets of inputs. The Hashemite University

20 The Hashemite University
Maintenance Not always applicable in education, i.e. highly required in real world jobs. Update your code based on: Discovered and reported bugs. Customer feedback to make your application more efficient and flexible. Upgrade the code. The Hashemite University

21 The Hashemite University
Additional Notes This lecture covers the following material from the textbook: Fourth edition: Chapter 2: Sections The Hashemite University


Download ppt "The Hashemite University Computer Engineering Department"

Similar presentations


Ads by Google