Jump to content

Java VLog - RoadToScriptDev


ashleyg48

Recommended Posts

I am currently encountering issues with understanding Strings. All i know is it's another data type. It's hard to find a tutorial of which actually spend time to explain them :s

They are actually quite easy basically but can be confusing at the start or just some of the methods.

This might help you

http://www.tutorialspoint.com/java/java_strings.htm

Good luck with this and have fun :)

  • Like 2
Link to comment
Share on other sites

Thank you, Meditation! :) - Competition on the thread by the way people, just read near bottom and it'll say how to enter if you wanna win a free bond once in a while ;) If anybody can help me with this current issue it'd be amazing <3



Having an issue getting this ArrayTable's part of Newboston's video... 

Here's my code: http://prntscr.com/2sv40d and this is his, all I've changed is array initialize numbers and the variable name. This is his code -> http://prntscr.com/2sv4ea

Thanks in advance :D

Link to comment
Share on other sites

Thank you, Meditation! :) - Competition on the thread by the way people, just read near bottom and it'll say how to enter if you wanna win a free bond once in a while ;) If anybody can help me with this current issue it'd be amazing <3

Having an issue getting this ArrayTable's part of Newboston's video...

Here's my code: http://prntscr.com/2sv40d and this is his, all I've changed is array initialize numbers and the variable name. This is his code -> http://prntscr.com/2sv4ea

Thanks in advance :D

Remove the semicolon at end of for loop.

Should be

for(int counter = 0; counter < ash.length; counter++)

System.out.println(counter + "\t" + ash[counter]);

  • Like 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...