Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp3
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. {
  14. int suma,liczba;
  15. Console.WriteLine("Podaj liczbฤ™");
  16. liczba = Convert.ToInt32(Console.ReadLine());
  17. int wynik = 0;
  18. do
  19. {
  20. wynik = wynik + liczba % 10;
  21. liczba = liczba / 10;
  22. }
  23. while (liczba != 0);
  24. Console.WriteLine("Suma cyfr podanej liczby wynosi: {0}",wynik);
  25. Console.ReadKey();
  26. }
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement