码迷,mamicode.com
首页 > 其他好文 > 详细

【程序32】

时间:2018-10-24 01:19:14      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:static   sys   错误   lan   keyword   ring   开始   can   stat   

题目:取一个整数a从右端开始的4~7位。


import java.util.*;

public class lianxi32 {

    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);

        System.out.print("请输入一个7位以上的正整数:");

        long a = s.nextLong();

        String ss = Long.toString(a);

        char[] ch = ss.toCharArray();

        int j=ch.length;

        if (j<7){System.out.println("输入错误!");}

        else {

            System.out.println("截取从右端开始的4~7位是:"+ch[j-7]+ch[j-6]+ch[j-5]+ch[j-4]);

        }

    }

}

【程序32】

标签:static   sys   错误   lan   keyword   ring   开始   can   stat   

原文地址:https://www.cnblogs.com/yuyu666/p/9840201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!