Question: 4. Write a C++ program that does the following: a. Prompts the user to enter a positive integer n greater than 10. b. If the
4. Write a C++ program that does the following: a. Prompts the user to enter a positive integer n greater than 10. b. If the user enters an invalid integer, then force the user to enter a correct integer. c. Use a for loop to print the sequence of integers from 1 to n, except: Print Fuzzy for integers that are multiples of 3. Print Cat for integers that are multiples of 4. Print Fuzzy Cat for integers that are multiples of both 3 and 4. Sample run of the program: Enter a positive integer greater than 10:9 Invalid input! Try again: 16 12 Fuzzy Cat 5 Fuzzy 7 Cat Fuzzy 1011 FuzzyCat 1314 Fuzzy Cat
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
