Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2020
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.48 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. using System.Threading;
  7.  
  8. namespace Zsofi
  9. {
  10.     class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             Console.ReadLine();
  15.             Random RND = new Random();
  16.             for (int i = 0; i < 100000; i++)
  17.             {
  18.                 Console.ForegroundColor = ConsoleColor.Green;
  19.                 Console.Write((char)RND.Next(32, 255));
  20.             }
  21.             Console.Clear();
  22.             Console.ForegroundColor = ConsoleColor.White;
  23.             Console.WriteLine("Értelmetlen, igaz?");
  24.             Thread.Sleep(5000);
  25.             Console.Clear();
  26.             Console.WriteLine("Tudom, Boo.");
  27.             Thread.Sleep(5000);
  28.             Console.Clear();
  29.             Console.WriteLine("Pedig én csak azt szeretném mondani, hogy");
  30.             Thread.Sleep(5000);
  31.             Console.Clear();
  32.             for (int i = 0; i < 100000; i++)
  33.             {
  34.                 Console.ForegroundColor = ConsoleColor.Green;
  35.                 Console.Write((char)RND.Next(32, 255));
  36.             }
  37.             Console.Clear();
  38.             Console.ForegroundColor = ConsoleColor.White;
  39.             Console.WriteLine("szóval csak annyi, hogy");
  40.             Thread.Sleep(5000);
  41.             Console.Clear();
  42.             Console.WriteLine("Ma is legyen csodaszép napod! <3");
  43.            
  44.             Console.ReadLine();
  45.         }
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement