Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #include <iostream>
  2. #include<windows.h>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. while(true)
  8. {
  9. Beep(392,600); //G
  10. Beep(330,600); //E
  11. Beep(330,600); //E
  12. Beep(349,600); //F
  13. Beep(294,600); //D
  14. Beep(294,600); //D
  15. Beep(262,300); //C
  16. Beep(330,300); //E
  17. Beep(392,500); //G
  18. Beep(2,650);
  19. Beep(392,600); //G
  20. Beep(330,600); //E
  21. Beep(330,600); //E
  22. Beep(349,600); //F
  23. Beep(294,600); //D
  24. Beep(294,600); //D
  25. Beep(262,300); //C
  26. Beep(330,300); //E
  27. Beep(262,500); //C
  28. Beep(2,600);
  29.  
  30. }
  31. return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement