cobra writes:
> IF my question is too silly please ignore it.
Well, you sent it twice. It's pretty silly, and it's off topic, but
now I'm worried that if everyone ignores it you'll keep sending it.
> I'd need a translation for basic : INPUT "AGE";A
import java.io.*;
public int getIntegerFromStandardInput ()
throws IOException, NumberFormatException {
final LineNumberReader lnr = new LineNumberReader
(new InputStreamReader (System.in), 1);
return (Integer.parseInt (lnr.readLine ()));
}
Please buy and read an introductory book on Java.
Best,
daniel dulitz