Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Compute the sum of the digits of an integer

C# Sharp Basic: Exercise-27 with Solution

Write a C# program and compute the sum of the digits of an integer.

C# Sharp Exercises: Compute the sum of the digits of an integer

Sample Solution:-

C# Sharp Code:

using System;
public class Exercise27 {
 public static void Main() {
  Console.Write("Input  a number(integer): ");
  int n = Convert.ToInt32(Console.ReadLine());
  int sum = 0;
  while (n != 0) {
   sum += n % 10;
   n /= 10;
  }
  Console.WriteLine("Sum of the digits of the said integer: " + sum);
 }
}

Sample Output:

Input  a number(integer): 12                                           
Sum of the digits of the said integer: 3

Flowchart:

Flowchart: C# Sharp Exercises - Compute the sum of the digits of an integer

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to compute the sum of the first 500 prime numbers.
Next: Write a C# program to reverse the words of a sentence.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.