题解 | 不要三句号的歪

不要三句号的歪

https://www.nowcoder.com/practice/7cbb7d96fb354f7995d9af1ccf8906b4

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);

        String str=sc.nextLine();
        String first=str.substring(str.indexOf(",")+1);
        String strart=first.substring(0,first.indexOf(","));        

        String end=str.substring(str.lastIndexOf(",")+1);
        Long count= Long.valueOf(end) - Long.valueOf(strart) -1;
        System.out.println(count);
    

      

    }
}

全部评论

相关推荐

评论
1
收藏
分享

创作者周榜

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