I am fairly new to creating JAVA programs. It is a hard task for me, but I am trying to learn and understand the basics. I am attempting to create a simple program that converts a given temperature Fahrenheit to centigrade. To begin here is my program thus far:
import java.util.Scanner
public class Temp{
{
public static void main (String [] args){
//Create a Scanner
Scanner reading = new Scanner(System.in);
//Have the user to enter a temperature in fahrenheit
{
System.out.println ("Enter a temperature");
I know it is not much, but if I could get someone to pull me through the steps and assist me where to begin I believe I can understand. Problems I am having is where to begin entering in the variables, the formula and the input of numbers. Also how to concert centigrade..I know I use the expressions float number; and scanner reading. In addition, int n;. Again I do not know where to place these expressions.
Thanks in advance for all suggestions and comments.

New Topic/Question
Reply
MultiQuote







|