Search Header Logo
C++ Programming (Basic)

C++ Programming (Basic)

Assessment

Presentation

Computers

University

Hard

Created by

Chong May

Used 3+ times

FREE Resource

40 Slides • 1 Question

1

C++ Programming (Basic) -Revision

from input until function

Slide image

2

Today's topics

  • Basic C++ function (input, output)

  • Selection control

  • Repetition control

  • Simple array

  • Simple function

3

Learning outcome 1:

  • How to use input\output in a program

  • How to use the selection control structures if, if...else, and switch in a program.

4

Key term for first part

  • Input output (cin, cout)

  • Selection (if … else, switch, case)

5

Programming Question 1

Write a program that takes a given length as input expressed in feet and inches. Convert and output the length in centimeters


Convert the length in feet and inches to all inches:

–Multiply the number of feet by 12


Use the conversion formula (1 inch = 2.54 centimeters) to find the equivalent length in centimeters

6

web page not embeddable
10 Minute Timer

10 Minute Timer

You can open this webpage in a new tab.

7

Slide image

8

Slide image

9

Slide image

10

Slide image

11

Slide image

12

Slide image

13

Slide image

14

Question 2

Write a c++ program for currency converter. It can convert Ringgit Malaysia to British pounds, Canadian dollars, and Japanese yen. It should also able to let the user decide which currency they wish to convert. Option menu using the switch statement and the input validation using if..else statement.


Details:

1: Input money using "cin" in a double variable

2: 1 British Pound = 5.87 Ringgit Malaysia

3: 1 Canadian Dollar= 3.37 Ringgit Malaysia

4: 1 Japanese Yen = 0.038 Ringgit Malaysia

5: Include the input validation in the system.

15

web page not embeddable
15 Minute Timer

15 Minute Timer

You can open this webpage in a new tab.

16

Learning outcome 2:

  • How to use the repetition (looping) control structures

  • How to use the array in the C++ program

  • How to write and use a simple function 

17

Key term for first part

  • While loop

  • For loop

  • Do while loop

  • Array

  • Function prototype

18

Slide image

19

Slide image

20

Slide image

21

Slide image

22

Slide image

23

Slide image

24

Slide image

25

Slide image

26

Slide image

27

Question 3:

Write a c++ program that can  print the Left oriented right angled pyramid as below.


Enter the number of rows: 5

1

2    3

4    5    6

7    8    9    10

11   12   13   14   15

16   17   18   19

20   21   22

23   24

25

28

web page not embeddable
15 Minute Timer

15 Minute Timer

You can open this webpage in a new tab.

29

Question 4

Using an array, read in 20 numbers, each of which is between 10 and 100, inclusive. As each number is read, print it only if it is not a duplicate of a number already read.


30

web page not embeddable
15 Minute Timer

15 Minute Timer

You can open this webpage in a new tab.

31

Slide image

32

Slide image

33

Slide image

34

Slide image

35

Slide image

36

Question 5:

Develop an interactive program that will keep track of the weather forecast in a month. On any given day, the weather forecast may be hot, rainy, or cloudy. Your program should input the weather forecast for each day in the month and should display the number of hot, rainy, and cloudy days in a month. You should use a loop and a conditional structure to develop this program. Try to implement functions in the solution.

Slide image

37

web page not embeddable
20 Minute Timer

20 Minute Timer

You can open this webpage in a new tab.

38

Slide image

39

Slide image

40

Open Ended

Any question?

41

Slide image

C++ Programming (Basic) -Revision

from input until function

Slide image

Show answer

Auto Play

Slide 1 / 41

SLIDE