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

UVA 913 - Joana and the Odd Numbers

#include<stdio.h>
main()
{
long int n;
while(scanf("%ld",&n)!=EOF)
{
long int k;
k=n*(n+2);
k=k/2;
k=3*k-6;
printf("%ld\n",k);
}
}

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

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

Factory Pattern

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