Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write code for Factorial?

Answer Posted / dharmendra nonia

using System;
class Factorial
{
public static void accept()
{
double a;
Console.WriteLine("Enter ur Number:");
a=Double.Parse(Console.ReadLine());
double res=fac(a);
Console.WriteLine(res);
}
public static double fac(double d)
{
if (d == 1)
return 1;
else
return d * fac(d - 1);
}
public static void Main()
{
accept();
Console.Read();
}
}

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why dataset is used in c#?

1022


What's the difference between abstraction and encapsulation?

939


What is serialization in .net?

1037


Is null == null c#?

942


How can I check the type of an object at runtime?

1006


What is difference between variable and property in c#?

934


What is the difference between internal and protected in c#?

1086


How the versioning applies to Assemblies or can you explain version numbers?

1077


What do multicast delegates mean?

1059


Is a dll an assembly?

953


Is datetime a value type in c#?

926


In a site to turn off cookies for one page which method is followed?

993


What are extension methods and where can we use them?

932


Differentiate between object pooling and connection pooling in c#?

1038


Explain what is copy constructor?

1066