/*
   Author:
   Description:  Homework Assignment 2

*/


import java.io.*;
import java.util.*;
import java.math.*;


public class HW2
{
    public static void main(String[] argv)
    {
	Scanner keyboard = new Scanner(System.in);  // keyboard object for input

	// Problem 1 ========================================
	System.out.println("---Problem 1a---");
	System.out.print("Please enter the number of days: "); 
        int days = keyboard.nextInt();

	// start instructions here



	System.out.println("---Problem 1b---");
	System.out.print("Please enter the total number of infected: "); 
        int infectedTotal = keyboard.nextInt();

	// start instructions here




	// Problem 2 ========================================
	System.out.print("Please enter the size (diagonal length) of old TV: "); 
        double diagonalOldTV = keyboard.nextDouble();
	
	System.out.println("---Problem 2a---");
	// start instructions here




	System.out.println("---Problem 2b---");
	// start instructions here




	System.out.println("---Problem 2c---");
	// start instructions here





	// Problem 3 ========================================

	double price=0, months=0, revenue=0;

	System.out.println("---Problem 3a---");
	System.out.print("Please enter the price per item: "); 
        price = keyboard.nextDouble();
	System.out.print("Please enter the number of months: "); 
        months = keyboard.nextDouble();
	
	// start instructions here




	System.out.println("---Problem 3b---");
	System.out.print("Please enter the desired revenue: "); 
        revenue = keyboard.nextDouble();
	System.out.print("Please enter the number of months: "); 
        months = keyboard.nextDouble();

	// start instructions here




	System.out.println("---Problem 3c---");
	System.out.print("Please enter the desired revenue: "); 
        revenue = keyboard.nextDouble();
	System.out.print("Please enter the price per item: "); 
        price = keyboard.nextDouble();

	// start instructions here





    }
}
