Skip to content

elmerdotdev/flowchart-exercises

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Flowchart Exercises

Requirements

  • Clone this repository to your local machine.
  • Create a pseudocode and draw a flowchart for the following exercises.
  • You should use Whimsical to draw the flowcharts.
  • Take a screenshot and add each flowchart to the flowcharts folder. Use the command line to create the folder.
  • Add each flowchart to the answer section of this file as image.
  • Each exercise should be in a different commit.
  • If you want to make changes after your commit, you should create a new commit.

Exercise 1

Write an algorithm and draw a flowchart to convert the length in feet to centimeters.

Pseudocode:

  • Input length in feet (LFT)
  • Calculate the length in cm (LCM) by multiplying LFT by 30
  • Print length in cm (LCM)

Answer

Exercise 2

Write an algorithm and draw a flowchart that will read the two sides of a rectangle and calculate its area.

Pseudocode:

  • Input the width (W) and the length (L) of a rectangle
  • Calculate the area (A) by multiplying W by L
  • Print A

Answer

Exercise 3

Write an algorithm and draw a flowchart that will read three numbers and prints the value of the largest number.

Given that the three numbers are not equal to each other)

Answer

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published