题解 | #四舍五入#

四舍五入

https://ac.nowcoder.com/acm/problem/22006

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        int x = n % 10; //个位数
        if (x > 4) {
            n = n + (10 - x);
        } else if (x <= 4 && x > 0){
            n = n - x;
        }
        System.out.println(n);
        
    }   
}
全部评论

相关推荐

11-08 13:58
门头沟学院 Java
程序员小白条:竟然是蓝桥杯人才doge,还要花钱申领的offer,这么好的公司哪里去找
点赞 评论 收藏
分享
AFBUFYGRFHJLP:直接去美帝试试看全奖phd吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务