1 /* 2 * Playing a mystery song and, maybe, knowing the song. 3 */ 4 5 package mmw; 6 7 import note.SNote; 8 9 public class MysterySong { 10 public static void main(String[] args) { 11 SNote note = new SNote(); 12 note.text(); 13 note.play(); 14 note.rp(); note.play(); 15 note.rp(); note.play(); 16 note.lp(2); note.play(2); 17 note.rp(); note.play(); 18 note.rp(); note.play(); 19 note.lp(2); note.play(); 20 note.rp(2); note.play(); 21 note.rp(); note.play(); 22 note.x2();note.rp(); note.play(); 23 note.s2();note.lp(2); note.play(); 24 note.rp(); note.play(); 25 note.x2(); note.rp(); note.play(); 26 } 27 } 28 29