PSEUDOCODE, FLOWCHART AND CODE REPRESENTATION OF APPROXIMATE ESTIMATE OF THE NUMBER OF TILES REQUIRED TO FINISH FLOOR SPACES
As a civil engineer, you are frequently required to provide approximate estimate of the number of tiles required to finish floor spaces. Write a simple program to help you complete this task as quickly as possible. a. Pseudocode b. Flowchart c. Code implementation (test with different values) PSEUDOCODE START // Step 1: Declare variables Declare floorLength, floorWidth, tileLength, tileWidth as real Declare floorArea, tileArea, numTiles as real // Step 2: Input floor dimensions PRINT "Enter floor length (in meters):" READ floorLength PRINT "Enter floor width (in meters):" READ floorWidth // Step 3: Input tile dimensions PRINT "Enter tile length (in meters):" ...