Guest User

Untitled

a guest
Nov 20th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication3
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. int i;
  13. int j;
  14. int tal;
  15. int nummer;
  16. int k;
  17. string indata;
  18. nummer = 1;
  19. Console.Write("Ange hur många radar du vill ha: ");
  20. indata = Console.ReadLine();
  21. tal = int.Parse(indata);
  22. k = int.Parse(indata);
  23. for (i = 1; i <= tal; i++)
  24. {
  25.  
  26. for (j = 1; j <= nummer; j++)
  27. {
  28. Console.Write("*");
  29. }
  30. Console.WriteLine();
  31. nummer++;
  32. nummer++;
  33. }
  34. }
  35. }
  36. }
Add Comment
Please, Sign In to add comment