Write a C# program and compute the sum of the digits of an integer
- برمجة سي شارب
- برمجة
- 2021-05-14
- MarwaMohammed
الأجوبة
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);
}
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
