Advertisement
GraionDilach

Untitled

May 12th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.12 KB | None | 0 0
  1. void RekurzivSzamos(int szam)
  2. {
  3.     if(szam > 0)
  4.     {
  5.         RekurzivSzamos(szam / 10);
  6.         Console.WriteLine(szam % 10);
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement