题解 | #取近似值#
取近似值
http://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
import java.util.Scanner;
public class Main {
public static void main(String[] args) { Scanner input=new Scanner(System.in); Double result = input.nextDouble(); System.out.println((long)(result+0.5)); }
}