UVA 11805 Bafana Bafana Solution

Solve in C++:

//AH Tonmoy
//Department of CSE ,Islamic University


#include<bits/stdc++.h>
using namespace std;
int main()
{
    int t,i,n,k,d,p;
    while(cin>>t)
    {
        for(i=1;i<=t;i++)
        {
            cin>>n>>k>>p;
            d=k+p;
            while(d>n)
            {
                d=d-n;
            }
            printf("Case %d: %d\n",i,d);

        }
    }


}


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.