Welcome To The World Of Hacking


Learn Hacking|Teach Hacking|Learn To Secure|Learn To Code

Tuesday

JAVA PROGRAMMING TUTORIAL 27: ARRAY TABLE

public class HackDefence{

public static void main(String[]args){

System.out.println("Index\tValue");

int array[] = {78,95,34,76};

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

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

            }

     }

}

OUTPUT:

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...