Q:

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

0

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

Sample Output:

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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);
 }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now