//
//To check functionality of keyboardreader
class KbRdPr
{
public static void main (String args[])
{
KeyboardReader kb = new KeyboardReader();
double a, b, c;
System.out.println("Please Enter Number:");
a=kb.getDouble();
System.out.println("plese again:");
b=kb.getDouble();
c=a*b;
System.out.println("result:" + c);
}
}
This is the program that iam tring to run. The KeyboardReader.class file atached as i downloaded alrerady compiled . Could that be a problem?