Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>;
- #include <cmath>;
- using namespace std;
- int main()
- {
- int tables;
- cin >> tables;
- double tableLength, tableWidth;
- cin >> tableLength >> tableWidth;
- double tableArea = (tableLength + 0.6) * (tableWidth + 0.6);
- cout << tableArea;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement