码迷,mamicode.com
首页 > 编程语言 > 详细

Java经典编程题50道之三十二

时间:2017-06-07 11:18:25      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:print   toc   ring   cut   str   char   static   oid   tostring   

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

public class Example32 {
    public static void main(String[] args) {
        cut(123456789);
    }

    public static void cut(long n) {
        String s = Long.toString(n);
        char[] c = s.toCharArray();
        int j = c.length;
        if (j < 7) {
            System.out.println("输入错误!");
        } else {
            System.out.println("截取从右端开始的4~7位是:" + c[j - 7] + c[j - 6]
                    + c[j - 5] + c[j - 4]);
        }
    }
}

Java经典编程题50道之三十二

标签:print   toc   ring   cut   str   char   static   oid   tostring   

原文地址:http://www.cnblogs.com/qubo520/p/6955782.html

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