Thread: Intro to Java

Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 42
  1. #21  
    Registered Member snwspeckle's Avatar
    Join Date
    Jul 2010
    Posts
    433
    Thanks
    22
    Thanked 25 Times in 17 Posts
    Rep Power
    12
    You forgot one arithmetic function, %, which grabs the remainder of number. It isn't used a lot but should be added. Otherwise, great tutorial. I am very new to Java and just finished my Ceasar Cipher which was included in a custom GUI which I may open source and explain. Anywho, goood job!
    Reply With Quote  
     

  2. #22  
    Registered Member
    Join Date
    Jul 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    I need some help. I am stuck at the "Javac HelloWorld.java" part. Where exactly do I do this?
    Reply With Quote  
     

  3. #23  
    Registered Member
    The Wanderer's Avatar
    Join Date
    Mar 2010
    Posts
    582
    Thanks
    41
    Thanked 151 Times in 71 Posts
    Rep Power
    189
    I need some help. I am stuck at the "Javac HelloWorld.java" part. Where exactly do I do this?
    That was intended to be put into the cmd prompt, but you can do it also by putting it into a batch file. That would be to compile your Java class, so make it something like...
    Compile.bat

    Then inside of it you would place:
    Code:
    Javac HelloWorld.java

    Progress is fast,
    but tradition has class.
    Reply With Quote  
     

  4. #24  
    Zarpor Owner

    mattsforeal's Avatar
    Join Date
    Oct 2009
    Posts
    220
    Thanks
    50
    Thanked 75 Times in 25 Posts
    Rep Power
    77
    Haven't got a chance to read the whole thing right now but read a good portion of it and I'm very surprised with how clear this makes everything. I've learned much more then I expected I would. Will send this to my friends, wanting to learn java
    Reply With Quote  
     

  5. #25  
    Registered Member Aintaro.'s Avatar
    Join Date
    Sep 2010
    Posts
    976
    Thanks
    180
    Thanked 214 Times in 106 Posts
    Rep Power
    14
    To bad i know all of this.

    Although this is awesome for people who are new to java.
    Reply With Quote  
     

  6. #26  
    Banned
    Join Date
    Mar 2011
    Posts
    28
    Thanks
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0
    TL;DR but good job
    Reply With Quote  
     

  7. #27  
    Registered Member
    Ecstasy's Avatar
    Join Date
    Sep 2008
    Age
    18
    Posts
    5,048
    Thanks
    325
    Thanked 598 Times in 318 Posts
    Rep Power
    843
    Quote Originally Posted by Mehrad View Post
    I think that's wrong...
    Shouldn't it be like
    Code:
    int x = 8196;
    ?
    no....

    Code:
    int x;
    is a variable...


    Code:
    int x = 8196;
    would be a constant except you'd need to put static & final identifiers.
    Spoiler for swag bank:
    Reply With Quote  
     

  8. #28  
    Banned
    Join Date
    Sep 2011
    Posts
    260
    Thanks
    62
    Thanked 41 Times in 32 Posts
    Rep Power
    0
    Brilliant, thanks!
    Reply With Quote  
     

  9. #29  
    Registered Member
    LunarKnight's Avatar
    Join Date
    Jan 2009
    Age
    20
    Posts
    683
    Thanks
    6
    Thanked 30 Times in 19 Posts
    Rep Power
    87
    This looks very useful for newcomers, or maybe even those that aren't.
    Good job.
    Reply With Quote  
     

  10. #30  
    Registered Member Juistaa's Avatar
    Join Date
    Jan 2012
    Posts
    221
    Thanks
    5
    Thanked 12 Times in 11 Posts
    Rep Power
    34
    Very helpful for beginners. + Rep
    XBL - Juistaa
    Steam - Juistaa
    Current Project - Nothing

    Reply With Quote  
     


Page 3 of 5 FirstFirst 12345 LastLast
Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. My Intro!
    By `Toys in forum The Red Carpet
    Replies: 13
    Last Post: 02-10-2011, 10:50 PM
  2. never really did a intro.. so here it is now.
    By Tobbo in forum The Red Carpet
    Replies: 1
    Last Post: 11-10-2010, 07:46 PM
  3. Intro
    By Mr Antt. in forum The Red Carpet
    Replies: 1
    Last Post: 03-19-2010, 02:34 AM
  4. Intro
    By Tafoya in forum The Red Carpet
    Replies: 0
    Last Post: 11-30-2009, 04:43 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •