题解 | #表示数字#

表示数字

https://www.nowcoder.com/practice/637062df51674de8ba464e792d1a0ac6

import java.util.Scanner;

/**
 * @author hll[yellowdradra@foxmail.com]
 * @since 2023-03-30 23:16
 **/
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str = in.nextLine();
        StringBuilder sb = new StringBuilder();
        boolean start = false;
        for (char c : str.toCharArray()) {
            // 遇到了数字 还没开始 即数字的开始
            if (isDigit(c) && !start) {
                sb.append("*").append(c);
                start = true;
                continue;
            }
            // 遇到了非数字 已经开始了 即数字的结束
            if (!isDigit(c) && start) {
                sb.append("*").append(c);
                start = false;
                continue;
            }
            // 数字进行中或非数字进行中
            sb.append(c);
        }
        // 如果是以数字结尾的还要最后补*
        boolean isEndWithDigit = isDigit(str.charAt(str.length() - 1));
        System.out.println(sb.append(isEndWithDigit ? "*" : ""));
    }

    public static boolean isDigit(char c) {
        return c <= '9' && c >= '0';
    }
}

全部评论

相关推荐

10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
10-25 00:32
香梨想要offer:感觉考研以后好好学 后面能乱杀,目前这简历有点难
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务