HATHAR Question: 1. Squares Looping random numbers and manipulating those values are fun, too! Why don't we try one that returns the square of an inputted number repeatedly until the user inputs 0? Let's do this! Instructions: 1. Using a do...while() loop, continuously scan for random integers that will be inputted by the user and print out its square, separated in each line. 2. Once the inputted value is 0, it will still print out its square value but should then terminate the loop afterwards. Answer: https://controlc.com/49230789a #askyip

feafawfaf23 - 49230789a
controlc.com

feafawfaf23 - 49230789a

Java code: import java.util.Random; public class Main { public static void main - 49230789a