hi ppl,
plz check the code and tell me where is the error....
interface keyin {
public
String keyinput();
}
public class
Test implements keyin {
static String ss;
public static void main ( String argvs []) {
System.out.println("Plz enter some string");
ss=keyin();
// System.out.println(ss);
}
public String keyinput() {
BufferedReader in= new BufferedReader(new InputStreamReader(System.in));
String str;
str= in.readLine();
return str;
}
}
well error is : METHOD KEYIN is not in class test
plz help wanteddddddddd sooooon

regards
Khurram fakhar