import java.util.LinkedList;
import java.util.Queue;
public class Main {
public static void main(String[] args) {
Queue songs = new LinkedList<>();
songs.add("Szmaragdy i Diamenty");
songs.add("Ja uwielbiam ją");
songs.add("Chłop z Mazur");
System.out.println("Playlista na dziś: " + songs);
for (int i = 0; i < songs.size(); i++) {
System.out.println("gram: " + songs.poll() +
" [następnie: " + songs.peek() + "]");
}
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter