Facebook
From Sexy Prairie Dog, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 235
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int i = 500;
  14.             while (i < 15000)
  15.             {
  16.                 Console.Beep(i, 700);
  17.                 i += 500;
  18.                
  19.             }
  20.             Console.ReadLine();
  21.         }
  22.     }
  23. }