java Copy public class ForLoop { public static void main(String[] args) { for (int i = 0, j = 10; i < 10 && j > 0; i++, j--) ...
確定! 回上一頁