美文网首页
随机点名回答问题的学生系统

随机点名回答问题的学生系统

作者: 薛定谔的猴子 | 来源:发表于2016-08-01 16:36 被阅读72次

    随机点名回答问题的学生系统

    public class Point_name {
    
        public static void main(String[] args) {
            point();
    
        }
    
        public static void point() {
    
            // 定义数组
            String[][] name = { { "张佳怡", "张怀宇", "张錦永", "郑诗及" },
                    { "赵子轩", "赵文越", "赵畅", "赵智晖" }, { "王蕾菀", "王思璎", "王诗欣", "王忆洁" },
                    { "朱良明", "朱文迪", "朱国豪", "朱爱琴" } };
    
            // 输出数组
            for (int a = 0; a < name.length; a++) {// 控制数组的行
                for (int b = 0; b < name[a].length; b++) {// 控制数组的列
                    System.out.print(name[a][b] + "  ");
                }
                System.out.println();// 换行
            }
    
            System.out.println();// 换行
    
            // 定义变量
            int i = (int) (Math.random() * 4);
            int j = (int) (Math.random() * 4);
    
            // 输出随机结果
            System.out.print("随机点到的是:" + name[i][j]);
    
        }
    }
    
    

    相关文章

      网友评论

          本文标题:随机点名回答问题的学生系统

          本文链接:https://www.haomeiwen.com/subject/fbaxsttx.html