Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: package mp5; import java.util.Scanner; import java.util.ArrayList; import java.util.List; public class Array3 { public static void main ( String argv[]) { Scanner sc = new Scanner(System.in); System.out.print("Enter 12 Number : "); int num = sc.nextInt(); List<Integer> value = new ArrayList<Integer>(num); for (int i = 0; i < num; i++) { System.out.print("INPUT … |
The End.