Advertisement
SUni2020

Doremi Sounds

Jul 18th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. using System;
  2. namespace Julian
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. Console.WriteLine(" The Tones song !");
  9. Console.Beep(262, 1000);// Do
  10. Console.Beep(294, 1000);// Re
  11. Console.Beep(330, 1000);// Mi
  12. Console.Beep(349, 1000);// Fa
  13. Console.Beep(392, 1000);// Sol
  14. Console.Beep(440, 1000);// La
  15. Console.Beep(494, 1000);// Si
  16. Console.Beep(262, 1000);// Do
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement