Question: write code java Write a java code to do the following: 1. Ask the user to enter three integer numbers:x, y, and z 2. create
Write a java code to do the following: 1. Ask the user to enter three integer numbers:x, y, and z 2. create three threads (Thi, Th2, and Th3) 3. the three threads will print all the numbers starting from x with addition of y and up to z. the name of the thread will be printed beside each number. 4. the last two numbers in the series will be printed by (Thl) Example: in case: x=20, y=10, z=73 then the output will be some thing like this: 20 (Th2) 30 (Thl) 40 (Th2) 50 (Th3) 60 (Thl) 70 (Th1) Finished Another example: in case:x4, y=5, 42 then the output will be something like this: 4 (Th3) 9 (Th1) 14 (Th2) 19 (Th1) 24 (Th2) 29 (Th3) 34 (Th1) 39 (Th1) Finished
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
