Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java

Javique Ryan
PLUS
Javique Ryan
Courses Plus Student 2,405 Points

Set and User Input

How do I get 10 integer form the user and then put all of the in a set

1 Answer

Alexandra Dudari
Alexandra Dudari
13,512 Points

Hello Javique Ryan,

You can use Class Scanner. First you should import java.util.Scanner, and then write the code below

import java.util.Scanner;
Scanner sc = new Scanner(System.in);
int[] nums = new int[10]; //make an array to store the numbers, for example
for (int i=0; i<10; i++) {
 nums[i] = sc.nextInt();
}

I hope this will help you. For more detail read the documentations https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html