Posts
 
Reputation
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
~2K People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for cassyjack

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 …

Member Avatar for jon.kiparsky
0
2K

The End.