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

UVA 1124 - Celebrity jeopardy

# include <stdio.h>
int main()
{
    char str[50];
    while(gets(str))
        puts(str);
   
}

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

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

Factory Pattern

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