1 条题解

  • 0
    @ 2024-10-28 11:31:09

    题目思路 题目要求留下ID用空格隔开,而输入的字符串中恰好也是由空格隔开的,所以只需要遍历一遍输入的字符串,然后留下所有数字和空格即可。

    import java.util.*;
    import java.io.*;
    
    public class Main{
        public static void main(String[] args){
            Scanner sc = new Scanner(System.in);
            String[] str = sc.nextLine().split(" ");
            for(int i = 0; i < str.length; i++){
                for(int j = 0; j < str[i].length(); j++){
                    if(str[i].charAt(j) - '0' >= 0 && str[i].charAt(j) - '0' <= 9){
                        continue;
                    }else{
                        System.out.print(str[i].substring(0, j) + " ");
                        break;
                    } 
                }
            }
        }
    }
    • 1

    信息

    ID
    1
    时间
    1000ms
    内存
    64MiB
    难度
    10
    标签
    递交数
    102
    已通过
    3
    上传者