Task 2: Exercise 1: Using Lab 2.2 as an example, develop a program that will deter- mine the area and perimeter of a rectangle. The length and width can be given as constants. (LENGTH=8 WIDTH=3) Exercise 2: Compile and run your program. Continue to work on it until you get the following output. The area of the rectangle is 24 The perimeter of the rectangle is 22. // This program will write the name, address and telephone // number of the programmer. // PLACE YOUR NAME HERE #include using namespace std; int main() { // Fill in this space to write your first and last name // Fill in this space to write your address (on new line) // Fill in this space to write you city, state and zip (on new line) // Fill in this space to write your telephone number (on new line) return 0; }
Task 2:
Exercise 1: Using Lab 2.2 as an example, develop a
mine the area and perimeter of a rectangle. The length and width can be
given as constants. (LENGTH=8 WIDTH=3)
Exercise 2: Compile and run your program. Continue to work on it until you
get the following output.
The area of the rectangle is 24
The perimeter of the rectangle is 22.
// This program will write the name, address and telephone
// number of the programmer.
// PLACE YOUR NAME HERE
#include <iostream>
using namespace std;
int main()
{
// Fill in this space to write your first and last name
// Fill in this space to write your address (on new line)
// Fill in this space to write you city, state and zip (on new line)
// Fill in this space to write your telephone number (on new line)
return 0;
}
Step by step
Solved in 3 steps