2017年10月20日

GuessNumber

摘要: import java.util.Scanner;import java.util.Random;public class GuessNumber{ public static void main(String args[]) { Scanner reader=ne... 阅读全文

posted @ 2017-10-20 22:41 MACHINE_001 阅读(170) 评论(0) 推荐(0) 编辑

CopyArrays

摘要: import java.util.Arrays;public class CopyArrays{ public static void main(String args[]) { int []a = {1, 2, 3, 4, 500, 600, 700, 800};... 阅读全文

posted @ 2017-10-20 22:40 MACHINE_001 阅读(152) 评论(0) 推荐(0) 编辑

Mult

摘要: public class MULT{ public static void main(String args[]) { int k; for(int x=1;x<=9;x++) { for(int y=1;y<=x;y++) { k=y*x; ... 阅读全文

posted @ 2017-10-20 22:38 MACHINE_001 阅读(257) 评论(0) 推荐(0) 编辑

导航