题解 | 取近似值

取近似值

https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
//把输入的数字当成字符,用acsll码解决
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        String str = in.nextLine();
        if (str.charAt(1) == '.') {
            if (str.charAt(2) - '0' > 4) {
                System.out.println(str.charAt(0) - '0' + 1);
            } else {
                System.out.println(str.charAt(0) - '0' );
            }
        } else {
            if (str.charAt(2 + 1) - '0' > 4) {
                System.out.println(str.charAt(0 + 1) - '0' + 1 + str.charAt(0) * 10 - '0' * 10);
            } else {
                System.out.println(str.charAt(0 + 1) - '0' + 0 + str.charAt(0) * 10 - '0' * 10);
            }


        }




    }
}

全部评论

相关推荐

挥毫自在:想白嫖你呢
点赞 评论 收藏
分享
迷茫的大四🐶:你这个拿去投央国企吧,投私企包过不了的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务