Advertise Here

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - lewey52

Pages: [1]
1
Java / Re: Java for Beginners!
« on: October 10, 2007, 08:41:23 am »
Another way to make a program something like this is:

Code: [Select]
public class HelloJava         //States the class

{                                    //Starts the class
       
        public static void main(String[] args)  // main method

       {
                 System.out.println("Hello Java!");  //output statement
        }                                                       //ends main method
}                                                              // ends class

That is just a very simple way of making a java program that says "Hello Java!"  Very nice tutorial by the way  ;).  It's some good stuff!
This is just a very basic way of outputting what you want to be said. 

By the way, which compiler do you use?  I use jGRASP

2
General Support / Re: Moving replied topic to top
« on: October 10, 2007, 08:34:49 am »
Then there is something wrong with my site.

3
General Support / Moving replied topic to top
« on: October 10, 2007, 07:02:58 am »
When a topic is replied to I would like it to be cycled to the top so it's easier to find topics that were recently replied to.  Is there any way to install or use this feature? 

Pages: [1]