Answer:
#include<iostream>
#include<string>
using namespace std;
int main()
{
//First program begins here
cout<<"Enter any two numbers: "<<endl;
float num1, num2;
cin>>num1>>num2;
cout<<"The product of the two numbers is: "<<num1 * num2<<endl<<'n';
//First Program ends here
//Second program begins here
cout<<"Enter the length and width of the rectangle: "<<endl;
float length, width;
cin>>length>>width;
cout<<"The perimeter of the rectangle is: "<<2 * (length + width)<<endl<<'n';
//Second Program ends here
//Third program begins here
cout<<"Enter the radius of the circle: "<<endl;
float radius;
cin>>radius;
const float pi = 3.141593;
cout<<"The circumference of the circle is: "<<2 * pi * radius<<endl<<'n';
//Third Program ends here
return 0;
}
Explanation:
See Attachment where I used comments to explain each line
Lines that begin with // are comments