Unverified Commit 2a5b0f23 authored by Lokesh Singh's avatar Lokesh Singh Committed by GitHub

Create printing array

parent 59c4dd06
class HelloWorld {
public static void main(String[] args) {
int arr[] = {12, 13, 14, 1, 2, 3};
int n=6;
for(int i= 0; i<n; i++)
{
System.out.print(arr[i]+" ");
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment