自学内容网 自学内容网

Divisibility Problem-codefordes

题目链接:Problem - A - Codeforces

解题思路:

如果 a 能被 b整除,就不需要进行改变,直接输出0,否则输出((a / b) + 1) * b - a,找到最小的能被b整除的数。

下面是c++代码:

#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;
}


原文地址:https://blog.csdn.net/2301_81718511/article/details/135722470

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!