. Design an application that displays the number of square feet in a house. Declare and

initialize the length and width of the house to 37 and 22, respectively. Go into your
source code and change the initialization values. Rerun the application

2 answers

void main(){float length=37;float wide=22;cout << length*wide;}
Design an application that displays the number of square feet in a house. Declare and initialize the length and width of the house to
37 and 22, respectively. Be sure to test your program and make sure that it displays the correct values. using C# Programming