// This program computes the trajectory of a projectile.
// Second, structured version.

import java.util.*;   // for Scanner

public class Projectile2 {
    // constant for Earth acceleration in meters/second^2
    public static final double ACCELERATION = -9.81;

    public static void main(String[] args) {
        Scanner console = new Scanner(System.in);
        giveIntro();

        System.out.print("velocity (meters/second)? ");
        double velocity = console.nextDouble();
        System.out.print("angle (degrees)? ");
        double angle = Math.toRadians(console.nextDouble());
        System.out.print("number of steps to display? ");
        int steps = console.nextInt();
        System.out.println();

        printTable(velocity, angle, steps);
    }

    // prints a table showing the trajectory of an object given
    // its initial velocity and angle and including the given
    // number of steps in the table
    public static void printTable(double velocity,
                                  double angle, int steps) {
        double xVelocity = velocity * Math.cos(angle);
        double yVelocity = velocity * Math.sin(angle);
        double totalTime = - 2.0 * yVelocity / ACCELERATION;
        double timeIncrement = totalTime / steps;
        double xIncrement = xVelocity * timeIncrement;

        double x = 0.0;
        double y = 0.0;
        double t = 0.0;
        System.out.println("step\tx\ty\ttime");
        System.out.println("0\t0.0\t0.0\t0.0");
        for (int i = 1; i <= steps; i++) {
            t += timeIncrement;
            x += xIncrement;
            y = displacement(yVelocity, t, ACCELERATION);
            System.out.println(i + "\t" + round2(x) + "\t" +
                               round2(y) + "\t" + round2(t));
        }
    }

    // gives a brief introduction to the user
    public static void giveIntro() {
        System.out.println("This program computes the");
        System.out.println("trajectory of a projectile given");
        System.out.println("its initial velocity and its");
        System.out.println("angle relative to the");
        System.out.println("horizontal.");
        System.out.println();
    }

    // returns the horizontal displacement for a body given
    // initial velocity v, elapsed time t and acceleration a
    public static double displacement(double v, double t, 
                                      double a) {
        return v * t + 0.5 * a * t * t;
    }

    // rounds n to 2 digits after the decimal point
    public static double round2(double n) {
        return (int) (n * 100.0 + 0.5) / 100.0;
    }
}
