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

UVA 138 - Street Numbers

#include<bits/stdc++.h>
using namespace std;
main()
{
    long long n,x=8,cnt=0;
    double n2;
    while(1)
    {
        n2=sqrt((x*x+x)/2);
        n=n2;
        if(n==n2)
        {
            printf("%10lld%10lld\n",n,x);
            cnt++;
        }
        if(cnt==10)
        break;
        x++;
    }

}

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

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

Factory Pattern

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