import java.io.*; public class Main { public static void main(String[] args) { class node<T> { T data; node<T> next; node(T data) ...
確定! 回上一頁