栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Java程序设计之豆机

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Java程序设计之豆机

Java程序设计之豆机
  • 题目描述
  • 代码部分

题目描述

代码部分
import java.util.Scanner;

public class ch07Q21 {
    public static void main(String[] args) {
        int numOfBalls;
        int numOfSlots;
        Scanner scanner = new Scanner(System.in);
        System.out.print("Enter the numbers of balls to drop: ");
        numOfBalls = scanner.nextInt();
        System.out.print("Enter the number of slots in the bean machine: ");
        numOfSlots = scanner.nextInt();
        int[] slots = new int[numOfSlots];
        for (int i = 0; i < numOfBalls; i++) {
            slots[randomDirection(numOfSlots)]++;
        }
        printslots(numOfBalls, numOfSlots, slots);
        printNumOfSlots(numOfSlots);
    }

    public static int randomDirection(int slots) {
        int count = 0;
        for (int i = 0; i < slots - 1; i++) {
            int random = (int) (Math.random() * 2);
            if (random == 0) {
                System.out.print("L");
            } else {
                System.out.print("R");
            }
            count += random;
        }
        System.out.println();
        return count;
    }

    public static void printslots(int numBalls, int numSlots, int[] slots) {
        for (int i = numBalls; i > 0; i--) {
            for (int m = 0; m < numSlots; m++) {
                if ((slots[m] - i) >= 0) {
                    System.out.print("0");
                } else {
                    System.out.print(" ");
                }
            }
            System.out.println();
        }
    }

    public static void printNumOfSlots(int slots) {
        for (int i = 0; i < slots; i++) {
            System.out.print(i + 1);
        }
    }
}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/445883.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号