Answer to Question #297898 in C++ for Yobw

Question #297898

Write a c++ program to find the length of the skirting board.Where she wants to replace the old skirting board and the coving 2.7,4.1m 32m(All dimensions in Meter)with the door of 0.86 x 2.06meters


1
Expert's answer
2022-02-15T09:32:14-0500


#include <iostream>
#include <iomanip>


using namespace std;


int main()
{
	float lengthSkirtingBoard=32+2.7+4.1-0.86;
	cout<<"\nThe length of the skirting board: "<<lengthSkirtingBoard<<"\n\n";


	system("pause");
	return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment