Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Julian
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine(" The Tones song !");
- Console.Beep(262, 1000);// Do
- Console.Beep(294, 1000);// Re
- Console.Beep(330, 1000);// Mi
- Console.Beep(349, 1000);// Fa
- Console.Beep(392, 1000);// Sol
- Console.Beep(440, 1000);// La
- Console.Beep(494, 1000);// Si
- Console.Beep(262, 1000);// Do
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement