I'm starting programming in school, and I'm finally starting to get the hang of it, so I thought I could come and share what I've done with people.
Also, I miss the hell outta this place and don't want to spam constantly so it's a reason to post

Project: CD Order Receipt thing
Description: It's supposed to be like an online CD order form. A lot of this was taken from the example used in class, and from bits of my beginning works.
import java.io.*;
class CDCost
{
public static void main ( String [] args ) throws IOException
{
String inName, inTelephone, inStreetaddress, inCityProvince, inEmail, inNumCD; // The variables for collecting information
double CDcost, GST, PST, Total; // the variables for calculating the cost of the CD
BufferedReader stdin=
new BufferedReader (
new InputStreamReader ( System.in ) );
System.out.println("Enter Personal Information prior to making purchase");
System.out.println("Name: "); // Requests Name
inName = stdin.readLine(); // reads the input
System.out.println("Telphone Number: "); // Requests Phone Number
inTelephone = stdin.readLine(); // reads the input
System.out.println("Street Address: "); // Requests Address
inStreetaddress = stdin.readLine(); // reads the input
System.out.println("City and Province: "); // Requests Location
inCityProvince = stdin.readLine(); // reads the input
System.out.println("Email Address: "); // Requests E-mail address
inEmail = stdin.readLine(); // reads the input
System.out.println(" *** Purchase Information ***");
System.out.println("Each CD is sold for $19.99 plus taxes."); // Displays the cost of 1 CD
System.out.println("How many CD's do you wish to purchase?"); // Requests how many CDs are being purchased
inNumCD = stdin.readLine(); // reads the input
CDcost = Double.parseDouble(inNumCD)*19.99; // Calculates how much CDs cost
GST = CDcost * 0.05; // Calculates GST
PST = CDcost * 0.08; // Calculates PST
Total = CDcost + GST + PST; // Calculates the Total
// The Following is the receipt
System.out.println("/t Your Receiot");
System.out.println("Alex's CD Warehouse");
System.out.println("2079 St.John's road");
System.out.println("Innisfil, Ontario");
System.out.println("L9S 1Y3");
System.out.println(" ");
// Customer Information:
System.out.println("\t Customer: "+ inName);
System.out.println("\t " + inTelephone);
System.out.println("\t " + inStreetaddress);
System.out.println("\t " + inCityProvince);
System.out.println("\t " + inEmail);
System.out.println(" ");
// Purchase Information
System.out.println("\t ITEM: CD");
System.out.println("\t QUANTITY: " + inNumCD);
System.out.println("\t COST: " + Total);
System.out.println(" ");
System.out.println("\t Subtotal: \t $" + CDcost);
System.out.println("\t GST: \t $" + GST);
System.out.println("\t PST: \t $" + PST);
System.out.println("\t Total Cost: \t $" + Total);
}
}