Calculatior
PSEUDOCODE BEGIN DISPLAY " Hello Daddy, what shape are you solving today " READ shape DISPLAY "What is the length of tile?" READ tilewidth DISPLAY "What is the width of tile?" READ tilelength DISPLAY "What is the length of the room?" READ floorwidth DISPLAY "What is the width of the room?" READ floorlength // Calculate tile area SET tile = length1 * width1 // Calculate floor area SET floor = length2 * width2 // Calculate total tiles needed SET Total = floor / tile DISPLAY “floor area” = “ + total + “ m 2 ” END FLOWCHART JAVA CODE import java.util.Scanner; public class Tilecalculator{ public static void main(S...