Sunday, 28 December 2014

UVA 11805 - Bafana Bafana(c file)

Problem Type : Ad hoc

#include<stdio.h>
int main()
{

   int player,start,pass,i,test,count,j;
   while(scanf("%d",&test)==1)
   {
      for(i=1;i<=test;i++)
      {
          count=0;
          scanf("%d%d%d",&player,&start,&pass);
          for(j=start; ;j++)
          {
              if(count==pass)
                break;
              if(j==player)
              {
                  count++;
                  j=0;
              }
              else{
                count++;
              }
          }
          printf("Case %d: %d\n",i,j);
      }
   }
   return 0;
}

No comments:

Post a Comment

ট্রিগার এর মাধ্যমে ডাটা ইনসার্ট - insert data using Database Trigger (Mysql)

সর্বপ্রথম আমরা প্রবলেমটা বুঝিঃ আমি একটা টেবিলের একটা কলামের ভ্যালুর উপর ডিপেন্ড করে আরেকটা কলামে ডাটা insert করব । এই কাজটা ট্রি...