- 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
flowchartsfolder. 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.
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)
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
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)