This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I am trying to make a Java Applet Calculator. What is an applet? Do I write a normal java program and turn it into a java applet or something? or Is a applet a diffirent way to program java?
Java Applets are basically mini applications (although they can be pretty robust) that are designed to run inside a web browser. While a regular Java Application can be ported to an Applet, it is better to write it as an Applet from the start if you know that's you want it to be. This is because all Applets must extend the Applet class. You can also extend JApplet which itself extends an Applet.
I'd recommend you start with the Applet lesson in the Java Tutorial to learn the basics of how to write an Applet.