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