Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Program
- {
- internal class Program
- {
- public static void Main(string[] args)
- {
- Console.WriteLine("Napište číslo pro ciferný součet");
- int cislo = int.Parse(Console.ReadLine());
- int soucet = 0;
- while (cislo > 0)
- {
- soucet += (cislo % 10);
- cislo /= 10;
- }
- Console.Write("Výsledkem je: ");
- Console.WriteLine(soucet);
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment