Question
2. Write a program to compute and output the perimeter and area of a circle having a radius of 3.2 inches
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
public class CirclePerimeterArea {public static void main(String[] args)
{
double radius, area, perimeter;
radius = 3.2;...