Question: Using java.util.concurrent.atomic.AtomicInteger class, create a Java program to start THREE (3) threads where all the threads will display 10 number starting from x incremented by
Using java.util.concurrent.atomic.AtomicInteger class, create a Java program to start THREE (3) threads where all the threads will display 10 number starting from x incremented by 1.Then displays the sum of the values for all threads. x is integer number and MUST be input from the keyboard.
Example of output:
Please input x: 5
Thread-0: 5
Thread-0: 6
Thread-0: 7
Thread-0: 8
Thread-0: 9
Thread-0: 10
Thread-0: 11
Thread-0: 12
Thread-0: 13
Thread-0: 14
Thread-1: 5
Thread-1: 6
Thread-1: 7
Thread-1: 8
Thread-1: 9
Thread-1: 10
Thread-1: 11
Thread-1: 12
Thread-1: 13
Thread-1: 14
Thread-2: 5
Thread-2: 6
Thread-2: 7
Thread-2: 8
Thread-2: 9
Thread-2: 10
Thread-2: 11
Thread-2: 12
Thread-2: 13
Thread-2: 14
Sum = 285
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
