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