给出了整数X和K。任务是找到可被X整除的最高K位数字。
例子:
Input : X = 30, K = 3
Output : 990
990 is the largest three digit
number divisible by 30.
Input : X = 7, K = 2
Output : 98
一个有效的解决方案是使用以下公式。
ans = MAX - (MAX % X)
where MAX is the largest K digit
number which is 999...K-times
该公式适用于简单的学校方法划分。我们删除余数以得到最大的可除数。
// CPP code to find highest K-digit number divisible by X
#include
using namespace std;
// Function to compute the result
int answer(int X, int K)
{
// Computing MAX
int MAX = pow(10, K) - 1;
// returning ans
return (MAX - (MAX % X));
}
// Driver
int main()
{
// Number whose divisible is to be found
int X = 30;
// Max K-digit divisible is to be found
int K = 3;
cout << answer(X, K);
}
输出:
990
有关更多详细信息,请参阅有关被X整除的最大K位数字的完整文章!
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。