Codehs 7.4.6: Gymnastics Mats
Calculate how many mats will be needed to fill a room given the dimensions of each mat and the dimensions of the room.

In the start function, ask the user for the dimensions of the mat. Calculate the area and return that value to the start function. Print the area of the mat to the user. Then ask the user for the dimensions of the room and calculate how many mats will be needed to fill the room. Print this value to the user.

You will need to use a function named calculateArea in your program. This function should take two parameters (length and width).

Respuesta :

Answer:

A code in C++ follows:

Explanation:

#include<iostream>

using namespace std;

int calculate_area(int width, int length)

{

int area;

area=width*length;

return area;

}

int main()

{

int a,b,ar,c,d,ar1,n;

cout<<"\nEnter length of room:";

cin>>a;

cout<<"\nEnter width of room:";

cin>>b;

ar=calculate_area(a,b);

cout<<"\nArea of room:"<<ar<<" units";

cout<<"\nEnter length of mat:";

cin>>c;

cout<<"\nEnter width of mat:";

cin>>d;

ar1=calculate_area(c,d);

n=ar/ar1;

cout<<"\nNumber of mats required are:"<<n;

return 0;

}

fichoh

The program calculates the number of mats required to cover a room based on the mat and room dimensions. The program written in python 3 goes thus :

mat_l= eval(input('Enter length of mat : '))

#enter mat length

mat_w = eval(input('Enter width of mat: '))

#enter mat width

mat_a = mat_l * mat_w

#calculates the area

print('area of mat =' , mat_a)

#display the value off the area

room_l = eval(input('Enter length of room : '))

#enter length of room

room_w = eval(input('Enter width or room : '))

#enter width of room

room_a = room_l * room_w

#calculates the area of room

num_mats = room_a / mat_a

#the number of mats required for the room

print(round(num_mats))

#display the number of mats to the nearest integer.

A sample run of the program's output is attached.

Learn more :https://brainly.com/question/15841654

Ver imagen fichoh