/*Write a script that asks the user to type the width and the length of a rectangle and then outputs to the screen the area and the perimeter of that rectangle.*/ void Exercise1(){ Double_t width = 0.; Double_t length = 0.; cout<<"Type the width : "; cin>>width; cout<<"Type the length : "; cin>>length; cout<<"Area: "<