রবিবার, ২৮ আগস্ট, ২০১৬

UVA 146 - ID Codes

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int main()
{
    char s[100];
    while(gets(s))
    {
        if(s[0]=='#')
        break;
        int l=strlen(s);
        if(next_permutation(s,s+l))
        puts(s);
        else
        printf("No Successor\n");

    }
    return 0;
}

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

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

Factory Pattern

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