解题思路:
如果 a 能被 b整除,就不需要进行改变,直接输出0,否则输出((a / b) + 1) * b - a,找到最小的能被b整除的数。
下面是c++代码:
cpp
#include<iostream>
using namespace std;
int main()
{
int t,a, b, index = 2;
cin >> t;
while (t != 0) {
cin >> a >> b;
if (a % b == 0) {
cout << 0 << endl;
}
else {
cout << ((a / b) + 1) * b - a << endl;
}
t--;
}
return 0;
}