Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static int getPositon(int height) {
        int tempPositoin = (int) (Math.random() * height);
        if (tempPositoin < 15) {
            tempPositoin += 15;
        }
        return tempPositoin;
    }
}