Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
Re: Array
i have just done it,hope it helps [CODE] import java.util.Arrays; import java.util.Scanner; public class ArraySum { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("Enter size of the array : "); Scanner sc=new Scanner(System.in);//scanner for size of array int n = sc.nextInt(); …
The End.
sameerRKO