Search Results
Search results 1-5 of 5.
The forums have been archived. Please read this thread for more information.
-
Skype!
Postskype: shredder212
-
well, it has got some work to do, but it is not entirely hopeless.. classes must start with a capital letter, so Console, System and yes, also String (string isn't a primitive data type, it is a class) Quote: “string name = terminal readline();” the seperator is '.' so terminal.readLine note: JAVA uses CamelCaps. so after every 'word' you have to start the next one with a capital letter ForExample, thisSentenceIsBetterReadable thanalongandalllowercaseifyouknowwhatimean. so, terminal.readLine. to…
-
well, I am a JAVA scripter, experienced or not XD anyway, to answer your question, main(String[] args) is actually used for running in the command line. you can specify command line arguments (args) like java MyProgram.java "hello world" in the program itself you could do System.out.println(args[0]); (first line of the array args) anyway, to answer your other question, JAVA has an API that uses various packages, like System for example. in these packages you go deeper, System has out, in or err …