/** 
 * CS1101 Take-home Lab #2, Exercise 1: Lab2Ex1.java
 * 
 * This program uses the MyCircle class to create a
 * Mycircle object and compute its area.
 * 
 * Discussion group: <fill in your group number here>
 */

// add appropriate import statement(s)

class Lab2Ex1 {

    public static void main (String[] args) {
        
        Scanner scanner = new Scanner(System.in);

        double radius, area;

        // Get radius from user
        
        // Create Mycircle object and sets its radius 

        // Compute area of the Mycircle object

        // Display the result

    }
}


