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;
}
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
