Structured Program Development

Similar documents
Chapter 3 Structured Program Development

Structured Program Development in C

CSE123 LECTURE 3-1. Program Design and Control Structures Repetitions (Loops) 1-1

BIL101E: Introduction to Computers and Information systems Lecture 8

Chapter 2 - Control Structures

Introduction to Programming

Fundamentals of Programming. Lecture 6: Structured Development (part one)

C How to Program, 6/e by Pearson Education, Inc. All Rights Reserved.

Chapter 3 Structured Program Development in C Part II

Chapter 2 - Control Structures

Chapter 2 - Control Structures

In Fig. 3.5 and Fig. 3.7, we include some completely blank lines in the pseudocode for readability. programs into their various phases.

C Program Control. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

Introduction to C Programming. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

CSE101-lec#12. Designing Structured Programs Introduction to Functions. Created By: Amanpreet Kaur & Sanjeev Kumar SME (CSE) LPU

1 EEE1008 C Programming

Introduction to C Programming

Fundamentals of Programming Session 7

Università degli Studi di Bologna Facoltà di Ingegneria. Principles, Models, and Applications for Distributed Systems M

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

Java How to Program, 9/e. Copyright by Pearson Education, Inc. All Rights Reserved.

Control Statements. Musa M. Ameen Computer Engineering Dept.

Introduction. C provides two styles of flow control:

Lab 2: Structured Program Development in C

C++ PROGRAMMING SKILLS Part 2 Programming Structures

ITC213: STRUCTURED PROGRAMMING. Bhaskar Shrestha National College of Computer Studies Tribhuvan University

There are algorithms, however, that need to execute statements in some other kind of ordering depending on certain conditions.

Note: unless otherwise stated, the questions are with reference to the C Programming Language. You may use extra sheets if need be.

C++ Programming Lecture 7 Control Structure I (Repetition) Part I

Pointers. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

JavaScript: Control Statements I Pearson Education, Inc. All rights reserved.

Fundamental of Programming (C)

Theory of control structures

CHAPTER 2.1 CONTROL STRUCTURES (SELECTION) Dr. Shady Yehia Elmashad

Fundamentals of Programming

Control Structures (Deitel chapter 4,5)

Fundamental of Programming (C)

Chapter 4 C Program Control

JavaScript: Control Statements I

INTRODUCTION TO C++ PROGRAM CONTROL. Dept. of Electronic Engineering, NCHU. Original slides are from

In this chapter you will learn:

Day05 A. Young W. Lim Sat. Young W. Lim Day05 A Sat 1 / 14

Add Subtract Multiply Divide

Decision Making -Branching. Class Incharge: S. Sasirekha

Programming for Engineers Iteration

Overview of C, Part 2. CSE 130: Introduction to Programming in C Stony Brook University

Chapter 5: Control Structures

Looping Subtasks. We will examine some basic algorithms that use the while and if constructs. These subtasks include

Basic Problem solving Techniques Top Down stepwise refinement If & if else.. While.. Counter controlled and sentinel controlled repetition Usage of

C: How to Program. Week /Mar/05

Programming - 1. Computer Science Department 011COMP-3 لغة البرمجة 1 لطالب كلية الحاسب اآللي ونظم المعلومات 011 عال- 3

STUDENT OUTLINE. Lesson 8: Structured Programming, Control Structures, if-else Statements, Pseudocode

Introduction to C. Systems Programming Concepts

Structured Programming. Dr. Mohamed Khedr Lecture 9

Functions. Angela Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan.

CS110D: PROGRAMMING LANGUAGE I

Chapter 2 - Introduction to C Programming

Computer Programing. for Physicists [SCPY204] Class 02: 25 Jan 2018

CMSC 104 -Lecture 9 John Y. Park, adapted by C Grasso

Internet & World Wide Web How to Program, 5/e by Pearson Education, Inc. All Rights Reserved.

Chapter 4: Basic C Operators

COP 2000 Introduction to Computer Programming Mid-Term Exam Review

Expressions. Arithmetic expressions. Logical expressions. Assignment expression. n Variables and constants linked with operators

C Structures, Unions, Bit Manipulations, and Enumerations

Dept. of CSE, IIT KGP

C Programming for Engineers Structured Program

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

2/29/2016. Definition: Computer Program. A simple model of the computer. Example: Computer Program. Data types, variables, constants

A Look Back at Arithmetic Operators: the Increment and Decrement

AL GHURAIR UNIVERSITY College of Computing. Objectives: Examples: if Single-Selection Statement CSC 209 JAVA I. week 3- Control Statements: Part I

3 The L oop Control Structure

Fundamentals of Programming

Syntax of for loop is as follows: for (inite; terme; updatee) { block of statements executed if terme is true;

Chapter 4 C Program Control

Control Statements: Part 1

IS 0020 Program Design and Software Tools

Sudeshna Sarkar Dept. of Computer Science & Engineering. Indian Institute of Technology Kharagpur

Chapter 7: Javascript: Control Statements. Background and Terminology. Background and Terminology. Background and Terminology

Loops! Loops! Loops! Lecture 5 COP 3014 Fall September 25, 2017

CP FAQS Q-1) Define flowchart and explain Various symbols of flowchart Q-2) Explain basic structure of c language Documentation section :

Introduction to C Final Review Chapters 1-6 & 13

LECTURE 5 Control Structures Part 2

Computers Programming Course 6. Iulian Năstac

REPETITION CONTROL STRUCTURE LOGO

Chapter 4: Control structures. Repetition

V3 1/3/2015. Programming in C. Example 1. Example Ch 05 A 1. What if we want to process three different pairs of integers?

BRANCHING if-else statements

Data types, variables, constants

Chapter 5. Repetition. Contents. Introduction. Three Types of Program Control. Two Types of Repetition. Three Syntax Structures for Looping in C++

Chapter 4: Control structures

C++ As A "Better C" Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan.

C++ Programming: From Problem Analysis to Program Design, Fourth Edition. Chapter 4: Control Structures I (Selection)

CS 199 Computer Programming. Spring 2018 Lecture 5 Control Statements

2.11 Assignment Operators. Assignment expression abbreviations c = c + 3; can be abbreviated as c += 3; using the addition assignment operator

Repetition and Loop Statements Chapter 5

Class 8 ALGORITHMS AND FLOWCHARTS. The City School

Chapter 1: Problem Solving Skills Introduction to Programming GENG 200

Sequence structure. The computer executes java statements one after the other in the order in which they are written. Total = total +grade;

Computational Expression

Module 4: Decision-making and forming loops

Transcription:

Structured Program Development Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

Outline Introduction The selection statement if if.else switch The repetition statement while do while Arithmetic operators C.E., NCU, Taiwan 2

Pseudocode Artificial, informal language that helps us develop algorithms Similar to everyday English Not actually executed on computers Helps us think out a program before writing it Easy to convert into a corresponding C/C++ program Consists only of executable statements C.E., NCU, Taiwan 3

Control Structures Sequential execution Statements executed one after the other in the order written Transfer of control When the next statement executed is not the next one in sequence Overuse of goto statements led to many problems Bohm and Jacopini: 3 control structures sequential execution selection (C language) if, if else, and switch repetition (C language) while, do while, and for C.E., NCU, Taiwan 4

Flowchart Graphical representation of an algorithm Special-purpose symbols rectangle symbol (action symbol) action oval symbol the beginning or end diamond symbol flowline : arrows for connection C.E., NCU, Taiwan 5

Control Structures Sequential Execution C.E., NCU, Taiwan 6

Outline Introduction The selection statement if if.else switch The repetition statement while do...while Arithmetic operators C.E., NCU, Taiwan 7

The if Selection Statement (1/2) Selection structure Used to choose among alternative courses of action Pseudocode: If student s grade is greater than or equal to 60 Print Passed If condition True print statement executed program goes on to next statement False print statement is ignored program goes onto the next statement C.E., NCU, Taiwan 8

The if Selection Statement (2/2) Diamond symbol (decision symbol) Indicates decision is to be made grade >= 60 true print Passed Contains an expression that can be true or false Test the condition, follow appropriate path false C.E., NCU, Taiwan 9

The if else Selection Statement (1/3) if Only performs an action if the condition is true if else Specifies an action to be performed both when the condition is true and when it is false Psuedocode If student s grade is greater than or equal to 60 Print Passed else Print Failed C.E., NCU, Taiwan 10

The if else Selection Statement (2/3) C code: if ( grade >= 60 ) printf( "Passed\n"); else printf( "Failed\n"); Ternary conditional operator (?:) Takes three arguments (condition, value if true, value if false) Our pseudocode could be written: printf( "%s\n", grade >= 60? "Passed" : "Failed" ); Or it could have been written: grade >= 60? printf( Passed\n ) : printf( Failed\n ); C.E., NCU, Taiwan 11

The if else Selection Statement (3/3) false grade >= 60 true print Failed print Passed C.E., NCU, Taiwan 12

Nested if else Selection Statement Once condition is met, rest of statements is skipped Pseudocode If student s grade is greater than or equal to 90 Print A else If student s grade is greater than or equal to 80 Print B else If student s grade is greater than or equal to 70 Print C else If student s grade is greater than or equal to 60 Print D else Print F C.E., NCU, Taiwan 13

The if else Selection Statement Compound Statement Set of statements within a pair of braces Example: if ( grade >= 60 ) printf( "Passed.\n" ); else { printf( "Failed.\n" ); printf( "You must take this course again.\n" ); } What will be printed if { } is missed? C.E., NCU, Taiwan 14

Outline Introduction The selection statement if if.else switch The repetition statement while do...while Arithmetic operators C.E., NCU, Taiwan 15

The while Repetition Statement (1/2) Repetition structure an action is repeated while some condition remains true Psuedocode: While there are more items on my shopping list Purchase next item and cross it off my list while loop repeated until condition becomes false C.E., NCU, Taiwan 16

The while Repetition Statement (2/2) Example: int product = 2; while ( product <= 1000 ) product = 2 * product; product <= 1000 true product = 2 * product false C.E., NCU, Taiwan 17

Counter-Controlled Repetition Loop repeated until counter reaches a certain value Definite repetition: number of repetitions is known Example: A class of ten students took a quiz. The grades (integers in the range 0 to 100) for this quiz are available to you. Determine the class average on the quiz Pseudocode: Set total to zero Set grade counter to one While grade counter is less than or equal to ten Input the next grade Add the grade into the total Add one to the grade counter Set the class average to the total divided by ten Print the class average C.E., NCU, Taiwan 18

1 /* Fig. 3.6: fig03_06.c 2 Class average program with counter-controlled controlled repetition */ 3 #include <stdio.h> 4 5 /* function main begins program execution */ 6 int main() 7 { 8 int counter; /* number of grade to be entered ered next */ 9 int grade; /* grade value */ 10 int total; /* sum of grades input by user */ 11 int average; /* average of grades */ 12 13 /* initialization phase */ 14 total = 0; /* initialize total */ 15 counter = 1; /* initialize loop counter */ 16 17 /* processing phase */ 18 while ( counter <= 10 ) { /* loop 10 times */ 19 printf( "Enter grade: " ); /* prompt for input */ 20 scanf( "%d", &grade ); /* read grade from user */ 21 total = total + grade; /* add grade to total */ 22 counter = counter + 1; /* increment counter */ 23 } /* end while */ 24 C.E., NCU, Taiwan 19

25 /* termination phase */ 26 average = total / 10; /* integer division */ 27 28 /* display result */ 29 printf( "Class average is %d\n" n", average ); 30 31 return 0; /* indicate program ended successfully */ 32 33 } /* end function main */ Test Enter grade: 98 Enter grade: 76 Enter grade: 71 Enter grade: 87 Enter grade: 83 Enter grade: 90 Enter grade: 57 Enter grade: 79 Enter grade: 82 Enter grade: 94 Class average is 81 C.E., NCU, Taiwan 20

Formulating Algorithms with Top-Down, Stepwise Refinement (1/2) Problem becomes: Develop a class-averaging program that will process an arbitrary number of grades each time the program is run. Unknown number of students How will the program know to end? Three phases Initialization: initializes the program variables Processing: inputs data values and adjusts program variables accordingly Termination: calculates and prints the final results C.E., NCU, Taiwan 21

Formulating Algorithms with Top-Down, Stepwise Refinement (2/2) Initialize total to zero Initialize counter to zero Input the first grade While the user has not as yet entered the sentinel Add this grade into the running total Add one to the grade counter Input the next grade (possibly the sentinel) If the counter is not equal to zero Set the average to the total divided by the counter Print the average else Print No grades were entered C.E., NCU, Taiwan 22

1 /* Fig. 3.8: fig03_08.c 2 Class average program with sentinel-controlled repetition */ 3 #include <stdio.h> 4 5 /* function main begins program execution */ 6 int main() 7 { 8 int counter; /* number of grades entered ed */ 9 int grade; /* grade value */ 10 int total; /* sum of grades */ 11 12 float average; /* number with decimal point for average */ 13 14 /* initialization phase */ 15 total = 0; /* initialize total */ 16 counter = 0; /* initialize loop counter */ 17 18 /* processing phase */ 19 /* get first grade from user */ 20 printf( "Enter grade, -1 to end: " ); /* prompt for input */ 21 scanf( "%d", &grade ); /* read grade from user */ 22 23 /* loop while sentinel value not yet read from user */ 24 while ( grade!= -1 ) { 25 total = total + grade; /* add grade to total */ 26 counter = counter + 1; /* increment counter */ C.E., NCU, Taiwan 23 27

28 printf( "Enter grade, -1 to end: " ); /* prompt for input */ 29 scanf("%d" "%d", &grade); /* read next grade */ 30 } /* end while */ 31 32 /* termination phase */ 33 /* if user entered at least one grade e */ 34 if ( counter!= 0 ) { 35 36 /* calculate average of all grades entered */ 37 average = ( float ) total / counter; 38 39 /* display average with two digits of precision */ 40 printf( "Class average is %.2f\n" n", average ); 41 } /* end if */ 42 else { /* if no grades were entered, output message */ 43 printf( "No grades were entered\n" n" ); 44 } /* end else */ 45 46 return 0; /* indicate program ended successfully */ 47 C.E., NCU, Taiwan 24 48 } /* end function main */

Class Average Program Test Results Test 1 Test 2 Enter grade, -1 to end: 75 Enter grade, -1 to end: 94 Enter grade, -1 to end: 97 Enter grade, -1 to end: 88 Enter grade, -1 to end: 70 Enter grade, -1 to end: 64 Enter grade, -1 to end: 83 Enter grade, -1 to end: 89 Enter grade, -1 to end: -1 Class average is 82.50 Enter grade, -1 to end: -1 No grades were entered C.E., NCU, Taiwan 25

The do while Repetition Statement (1/2) Similar to the while structure condition for repetition tested after the body of the loop is performed all actions are performed at least once Format: do { statement; } while ( condition ); Example (letting counter = 1): do { printf( "%d ", counter ); } while (++counter <= 10); prints the integers from 1 to 10 C.E., NCU, Taiwan 26

The do while Repetition Statement (2/2) action(s) condition true false C.E., NCU, Taiwan 27

1 /* Fig. 4.9: fig04_09.c 2 Using the do/while repetition statement */ 3 #include <stdio.h> 4 5 /* function main begins program execution */ 6 int main() 7 { 8 int counter = 1; /* initialize counter */ 9 10 do { 11 printf( "%d ", counter ); /* display counter */ 12 } while ( ++counter <= 10 ); /* end do...while */ 13 14 return 0; /* indicate program ended successfully */ 15 16 } /* end function main */ Test 1 2 3 4 5 6 7 8 9 10 C.E., NCU, Taiwan 28

Outline Introduction The selection statement if if.else switch The repetition statement while do...while Arithmetic operators C.E., NCU, Taiwan 29

Arithmetic Assignment Operators Assume: int c = 3, d = 5, e = 4, f = 6, g = 12; Assignment operator Sample expression Explanation Assigns += c += 7 c = c + 7 10 to c -= d -= 4 d = d - 4 1 to d *= e *= 5 e = e * 5 20 to e /= f /= 3 f = f / 3 2 to f %= g %= 9 g = g % 9 3 to g Fig. 3.11 Arithmetic assignment operators. C.E., NCU, Taiwan 30

Increment and Decrement Operators (1/2) Operator Sample expression Explanation ++ ++a Increment a by 1 then use the new value of a in the expression in which a resides. ++ a++ Use the current value of a in the expression in which a resides, then increment a by 1. -- --b Decrement b by 1 then use the new value of b in the expression in which b resides. -- b-- Use the current value of b in the expression in which b resides, then decrement b by 1. Fig. 3.12 The increment and decrement operators C.E., NCU, Taiwan 31

Increment and Decrement Operators (2/2) Operators Associativity Type ++ -- + - (type) right to left unary * / % left to right multiplicative + - left to right additive < <= > >= left to right relational ==!= left to right equality?: right to left conditional = += -= *= /= right to left assignment Fig. 3.14 Precedence of the operators encountered so far in the text. C.E., NCU, Taiwan 32

1 /* Fig. 3.13: fig03_13.c 2 Preincrementing and postincrementing */ 3 #include <stdio.h> 4 5 /* function main begins program execution */ 6 int main() 7 { 8 int c; /* define variable */ 9 10 /* demonstrate postincrement */ 11 c = 5; /* assign 5 to c */ 12 printf( "%d\n" n", c ); /* print 5 */ 13 printf( "%d\n" n", c++ ); /* print 5 then postincrement */ 14 printf( "%d\n\n" n", c ); /* print 6 */ 15 16 /* demonstrate preincrement */ 17 c = 5; /* assign 5 to c */ 18 printf( "%d\n" n", c ); /* print 5 */ 19 printf( "%d\n" n", ++c ); /* preincrement then print 6 */ 20 printf( "%d\n" n", c ); /* print 6 */ 21 22 return 0; /* indicate program ended successfully */ 23 C.E., NCU, Taiwan 24 } /* end function main */ 33