Ask your own question, for FREE!
Computer Science 16 Online
OpenStudy (anonymous):

[c++] .........Write a program that reads in the length and width of a rectangular yard (in meters) and the length and width of a rectangular house (in meters) placed in the yard. Your program should compute the time (in minutes) required to cut the lawn around the house. Assume the mowing rate in square meters per minutes is entered as a data input

OpenStudy (anonymous):

program conisits from input output an dprocess yours areall defined declare variables for length width mowing rate you find the area = l * w time = mowing rate * area thats all print time

OpenStudy (anonymous):

#includ<iostream.h> void main{ float l,w,area, mowrate; cout<<" Enter values for length & width"; cin>>l>>w; area=l * w; float time= mowrate * area; cout<<" The time taken is "<<time; }

OpenStudy (anonymous):

Make a correction the pre-processor directive is #include and the take values from the console for mowrate also . #include<iostream.h> void main() { float l,w,area, mowrate; cout<<" Enter values for length & width"; cin>>l>>w; area=l * w; cout<<" Enter rate of mowing in minutes "; cin>> mowrate; float time= mowrate * area; cout<<" The time taken is "<<time; }

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Breathless: Spooky witch but cute
5 hours ago 3 Replies 0 Medals
Arriyanalol: help
5 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 4 Medals
Jaded012023: Please tell me what you all think of this song
8 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
8 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!