Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. namespace tehtava2
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. int lkm;
  8. Console.WriteLine("Kuinka monta kertaa tulostetaan ");
  9. lkm = int.Parse(Console.ReadLine());
  10. Tulosta( lkm);
  11. Console.ReadLine();
  12.  
  13. }
  14.  
  15.  
  16. static void Tulosta( int maara)
  17. {
  18.  
  19. for (int i = 0; i < maara; i++)
  20. {
  21. Console.WriteLine("Hipheijaa");
  22.  
  23. }
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement