- 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.
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)
Write an algorithm and draw a flowchart to check the three number inputs whether a triangle is possible or not.
Draw the flowchart for the following:
Accept the name and marks obtained by a student in Computer Project.
Display the grades as per the table given below:
Marks obtained | Grade |
---|---|
80% or more | A |
60% or more but less than 80% | B |
40% or more but less than 60% | C |
Less than 40% | No Grade |