Codeforces 1328 A. Divisibility Problem Solution

  1. Solution in C++:
  2. #include<bits/stdc++.h>
  3. using namespace std;
  4. int main()
  5. {
  6. int t,n,i,a,b,c;
  7. cin>>t;
  8. while(t--)
  9. {
  10.  
  11. cin>>a>>b;
  12. if(a%b!=0)
  13. {
  14. c=b-(a%b);
  15. cout<<c<<endl;
  16. }
  17. else
  18. cout<<"0"<<endl;
  19.  
  20. }
  21. }

No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.