Selasa, 26 April 2016

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(" Sum of digits is : {0}", sum);
}
public void input()
{
Console.Write(" Enter desired digit : ");
n = Convert.ToInt64(System.Console.ReadLine());
add(n);
}

}


0 komentar to “C Program using Functions and loops”

Posting Komentar

 

Make Money Online Now Free Copyright © 2016 -- Powered by Blogger