Hi I'm new to Java and NetBeans IDE 7.4 I've installed JDK 7u45 Windows and NetBeans 7.4
I created the following java program
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package readnumbers;
import Utilities.Keyboard;
/**
*
* @author Sinatra
*/
public class ReadNumbers {
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
// TODO code application logic here
double dNum1, dNum2, dNum3;
double dAnswer;
System.out.println("This is a heading");
System.out.println("Enter a number");
dNum1 = Keyboard.getDouble();
}
}
I'm getting the following error: error: package Utilities does not exist.
Please help