2013-03-09 08:18:49 UTC
"Exception in thread "main" java.lang.Error: Unresolved compilation problems:
fnum cannot be resolved to a variable
snum cannot be resolved to a variable
answer cannot be resolved to a variable
fnum cannot be resolved to a variable
snum cannot be resolved to a variable
answer cannot be resolved to a variable
at Tutorials.main(Tutorials.java:7)"
and this is the program
import java.util.Scanner;
public class Tutorials
public static void main(String args[]) {
Scanner bucky = new Scanner(System.in);
System.out.println("Enter first num:");
fnum = bucky.nextDouble();
System.out.println("Enter second num:");
snum = bucky.nextDouble();
answer = fnum + snum;
System.out.println(answer);
}
}