বৃহস্পতিবার, ১২ জানুয়ারী, ২০১৭

UVA 11173 - Grey Codes

#include<bits/stdc++.h>
using namespace std;
main()
{
    long long ts;
    cin>>ts;
    while(ts--)
    {
        long long a,b,k,k1;
        cin>>a>>b;
        a = b ^ (b >> 1);
        cout<<a<<endl;
    }
}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factory Pattern

Factory Method  is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...