Guest User

Untitled

a guest
Mar 17th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication7
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Console.WriteLine("Hoe groot?");
  13.             int x = Convert.ToInt32(Console.ReadLine());
  14.             for (int i = 0; i < x; i++)
  15.             {
  16.                 for (int i2 = x; i2 > i; i2--)
  17.                 {
  18.                     Console.Write("x");
  19.                 }
  20.                 Console.WriteLine();
  21.             }
  22.         }
  23.     }
  24. }
Add Comment
Please, Sign In to add comment