Create a java program 1. Broken Record Looping strings works like playing a broken record – it repeats something over and over again. But what's great about loops is that we can define as to how many times it will repeat something with proper code, and that's what we're about to do now using while() loops. Instructions Scan a positive integer and store it in a variable. Using while() loop, repeatedly print out "CodeChum is awesome" for the same number of times as that of the inputted integer. Each outputted string must be separated in new lines. Don't forget to make an increment variable that will increase its value per iteration so as to not encounter a forever loop and have errors, okay? Input Format A line containing an integer. Input Sample 4 Output Format Multiple lines containing a string. Output Sample CodeChum·is·awesome CodeChum·is·awesome CodeChum·is·awesome CodeChum·is·awesome
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here