Question: Please make it available for copy This homework assignment has 2 parts which require submitting 2 separate programs to blackboard. Problem 1 of 2: Write
This homework assignment has 2 parts which require submitting 2 separate programs to blackboard. Problem 1 of 2: Write a C++ program, without using any conditional statements, which will ask the user to input an integer number (say N) and ask for a multiple (say M). Your code should then output the next integer from N which is a multiple of M. Make sure your code works for all possible cases, not just the test cases. Your code will be tested on other test cases not listed here. Please properly comment your code before submission For this part of the assignment, name your source file as Get Multiple_WSUID.cpp. For example, if your user ID is A999B999 name your file as Get Multiple_A999B999.cpp. Sample Test cases: Test case 1: Test case 2: Enter a number:13 Enter a number: 7 Next multiple of 5 Next multiple of: 2 The next multiple of 5 from 13:15 The next multiple of 2 from 7: 8 Test case 3: Test case 4: Enter a number: 20 Enter a number: 107 Next multiple of 2 Next multiple of 100 The next multiple of 2 from 20:20 The next multiple of 100 from 107: 200
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
