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
#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;
}
Comments
Leave a comment