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