05-05-2018, 11:13 AM
Write a Program which allows the user to input an integer value for a variable name Limit. Based on the input value, the program should perform the following tasks:
• Check whether the value entered by the user falls within the range from 10 to 150. (10 and 150 included in the given range.)
• Display those numbers which are divisible by both 3 and 5 in the range from 1 up to the Limit.
• Calculate and display the sum of those numbers which are divisible by either 3 or 5.
• Final task will be to count and display those numbers which are not divisible by 3 or 5.
For example if user enters Limit=21
Numbers which is divisible by both 3 and 5 is = 15
Numbers which are divisible by either 3 or 5= 3,5,6,9,10,12,18,20,21 (as 15 divisible by both 3 and 5, so it is not included)
Sum will be = 3+5+6+9+10+12+18+20+21= 104
Solution
Download attached file.
CS201 - Spring 2018 - Assignment 1.cpp (Size: 1.11 KB / Downloads: 76)
• Check whether the value entered by the user falls within the range from 10 to 150. (10 and 150 included in the given range.)
• Display those numbers which are divisible by both 3 and 5 in the range from 1 up to the Limit.
• Calculate and display the sum of those numbers which are divisible by either 3 or 5.
• Final task will be to count and display those numbers which are not divisible by 3 or 5.
For example if user enters Limit=21
Numbers which is divisible by both 3 and 5 is = 15
Numbers which are divisible by either 3 or 5= 3,5,6,9,10,12,18,20,21 (as 15 divisible by both 3 and 5, so it is not included)
Sum will be = 3+5+6+9+10+12+18+20+21= 104
Solution
Download attached file.
