Java Video Tutorial 8: Arrays
Top Comments
All Comments (246)
-
do you think you could do one on arraylists?
-
i loved all ur videos..superb..i do agree..java is most powerful language to be learnt in this real world...cheers for the developers...congrats for the supporters...always salute for the engineers who implement that..that is us!!!!!!!!!!!!!
-
ahhhhhh yes finally a video incorporating a for loop with an array, iv been stuck on [x] for ever, makes so much sense now thanks.
-
@alyssa1992ful hey!! Where did u save the file?? Save the file somewhere u can easily access it like ur desktop or flash drive :)
-
Thank u so much! !
-
oh so i thought that you are really a good teacher
yyyyyuuuuuuuummmmmmmmmmmmyyyyy
yyyyyyyy !!!! -
Good Afternoon sir why is it when i run a cmd it says javac: ArrayExamples.java not found??Help me please thanks
Java is so fun to work with for fun, or personal use, it's only when you get really retarded assignments that you probably wouldn't even use in the real working world, that you start to hate it.
12eebok 2 years ago 14
@MRCheryjonathan It's been a month ago but I just noticed your comment as am just checking out this video.. Just thought dis might help
class arraySquares{ public static void main(String [] args)
{ int list []=new int[101]; for(int x = 1; x < list.length;x++) { System.out.println("The square of "+ x + " is: " + (list[x]=x*x)); }
}
}
Six872 1 month ago