Computer Science, asked by sunnyaman6220, 8 hours ago

C++ program that computes for the area of a rectangle.

Answers

Answered by nikhilgupta060707
0

Answer:

#include<iostream>

using namespace std;

int main{

int l = 2;

int b = 4;

cout << "The area of the rectangle is" + l*b;

return 0;

}

Similar questions