Posts

Showing posts from March, 2025

Assignment

As a civil engineer, you are frequently required to provide approximate estimate of the number of tiles required to furnish floor spaces. Write a simple program to help you complete this task as quickly as possible. a. Pseudo code b. Flowchart  c. Code implementation  a. Pseudo code                               Start * Input the length of the floor (L) * Input the width of the floor (W) * Input the length of the tile (l) * Input the width of the tile (w) * Calculate the area of floor = L*W * Calculate the area of one tile = l*w * Calculate the number of tiles required (N)= floor area/tileArea * Round up to the nearest whole number (since you can't use a fraction of a tile) * Output N                             End b. Flowchart                               S...