Java tutorial
//package com.java2s; public class Main { public static float roundToHalf(float x) { return (float) (Math.ceil(x * 2) / 2); } }