

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maximum positive integer divisible by C and is in the range [A, B] in C++
Here we will see one interesting problem. let us consider we have three integers A, B, and C. We have to find one minimum integer X, such that X mod C = 0, and X is not in the range [A, B]. If the values of A, B and C are 5, 10 and 4 respectively, then the value of X will be 4. We have to follow these steps to get the solution −
Steps −
If C is not in the range [A, B], then return C as a result
Otherwise get the first multiple of C, which is greater than B, then return that value
Example
#include <iostream> using namespace std; int findMinMumber(int a, int b, int c) { if (c < a || c > b) return c; int res = ((b / c) * c) + c; return res; } int main() { int a = 2, b = 4, c = 2; cout << "Minimum number X: " << findMinMumber(a, b, c); }
Output
Minimum number X: 6
- Related Questions & Answers
- Minimum positive integer divisible by C and is not in range [A, B] in C++
- Find the minimum positive integer such that it is divisible by A and sum of its digits is equal to B in Python
- Smallest Integer Divisible by K in Python
- Program to find first positive missing integer in range in Python
- Count the numbers divisible by ‘M’ in a given range in C++
- Maximum and Minimum element of a linked list which is divisible by a given number k in C++
- Find if nCr is divisible by the given prime in C++
- What is the maximum possible value of an integer in C# ?
- Count numbers in a range that are divisible by all array elements in C++
- Number is divisible by 29 or not in C++
- Find permutation of n which is divisible by 3 but not divisible by 6 in C++
- Minimum positive integer required to split the array equally in C++
- Count of all even numbers in the range [L, R] whose sum of digits is divisible by 3 in C++
- Count of Numbers in a Range divisible by m and having digit d in even positions in C++
- Find the Numbers that are not divisible by any number in the range [2, 10] using C++
Advertisements