k, so here's the problem: this is the code i've written:


#include <iostream>
using namespace std;

int main()

{
int length, width;

cout << "Enter the length: ";
cin >> length;

cout << "Enter the width: ";
cin >> width;

cout << "The area is " << length *...