MysterySong.java
1    package mmw;
2    import note.SNote;
3    
4    public class MysterySong {
5    
6    
7    
8            public static void main(String[] args) {
9                SNote note = new SNote();
10               note.text();
11   
12               note.play();
13               note.rp(); note.play();
14               note.rp(); note.play();
15               note.lp(2); note.play();
16   
17               note.play();
18               note.rp(); note.play();
19               note.rp(); note.play();
20               note.lp(2); note.play();
21   
22               note.rp(2); note.play();
23               note.rp(); note.play();
24               note.rp(); note.x2();note.play();
25   
26               note.lp(2);note.s2(); note.play();
27               note.rp(); note.play();
28               note.rp(); note.x2();note.play();
29   
30   
31               System.out.println();
32           }
33       }
34