2627282930313233343536
public void old() { // Sound sound = new OggSound("SoundMeni.ogg"); // Sound sound = new OggSound("Groove Grove.ogg"); Sound sound = new WavSound("end.wav"); sound.play(); Scanner in = new Scanner(System.in); while (true) { System.out.print(">"); String input = in.nextLine();
3536373839404142434445
System.out.print(">"); String input = in.nextLine(); String[] args = input.split(" "); if (input.equals("play")) sound.play(); else if (input.equals("stop")) sound.stop(); else if (input.equals("loop")) sound.loop(); else if (input.equals("pause"))