Techno News, Nexus Lollipop Upgrade, WiFi Adapter, Transfer Photos from LG from Phone, Samsung Galaxy, Stock Firmwares, Huawei Android, Linux

Senin, 30 Desember 2013

C# Program using Functions and loops

C# Program using Functions and loops - very many people who love gadgets, especially gadgets nowadays with all sophisticated spek good, but not all gadgets suitable for your purposes, in blogs Techno News we will review and display speck with price gadgets from various brands and news about gadgets latest, now we will discuss first about C# Program using Functions and loops please in see until finished because the news that we convey we try to complete for you.

Articles : C# Program using Functions and loops
full Link : C# Program using Functions and loops
Article Csharp, Article programs,

You can also see our article on:


C# Program using Functions and loops

C# Program using Functions

Program Statement:
Write a function which takes one value as parameter and display the sum of digits in the value. e.g. if user has passed 125 then function will print 1+2+5 = 7

Solution:
 class _sum
{
long n, i, sum = 0;
public void add(long n)
{
for (i = n; i != 0; i = i / 10)
{
sum = sum + i % 10;

}
Console.WriteLine("\n\t\tSum of digits is : {0}", sum);
}
public void input()
{
Console.Write("\n\t\tEnter desired digit : ");
n = Convert.ToInt64(System.Console.ReadLine());
add(n);
}

}




enough already information C# Program using Functions and loops

hopefully information about C# Program using Functions and loops that we provide can be useful for you in determining the appropriate gadgets with your needs.

you just read the article with title C# Program using Functions and loops if you intend to bookmark or share it please use link https://nikephang.blogspot.com/2013/12/c-program-using-functions-and-loops.html if you need other information about software or other hardware please visit other page in this blog.

Tag : , ,
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : C# Program using Functions and loops

1 komentar: