Skip to main content

Featured

Game Development Tutorials In Android

Game Development Tutorials In Android Hi Guys,                 We are shortly started Game Development Tutorials in Android Studio. So everyone supports me and share this blogs to your friends. Guys, At this time everyone is freely available to source code and we are provide a video for step by step game developments. you are learn free and feel free to support us. Guys, if you have any question to me, so feel free to comment us. I will try to answer all the question as long as possible.                                                     Thank's                                                                          ...

Array Example In Java Programming Languages

Array Example In Java Programming Languages

In this Example, We show you how Array work in Java. this is a very important program because Most of place in Development Part we use Array, About this program You can any difficulties for understand an Array , So Comment it.

Before we are going to start , just click on the Advertisement, available on this page. you know this is motivate to me , for making some more program to project, and available for you a better tutorials or examples or projects..

Now Let's Start :

                                                    "Arraytest.java"

class Arraytest{


public static void main(String arg[])
{
// int arr[]=new int[5];
int arr[];
arr=new int[5];
for(int i=0;i<=4;i++)
{
arr[i]=i;
System.out.println(arr[i]);
}

int name[]={1,2,3,4,5,6,7,8,9,10};
int sum=0;
for(int x:name)
{


sum=sum+x;

}
System.out.println(sum);
}

}

Compile And Run this Program...


If this information is important to you , and you want to , I will continue writing some more details of Java, Android Programming Language, so click on the advertising, available on this page. This is motivate me for writing some more useful stuff, Thank's 

Comments