Java tutorial
//package com.java2s; public class Main { public static int getPositon(int height) { int tempPositoin = (int) (Math.random() * height); if (tempPositoin < 25) { tempPositoin += 15; } //return tempPositoin; return height - 20; } }