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

java习题:倒序输出一行字符串

时间:2017-12-21 21:46:44      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:com   toc   gpo   inpu   out   static   stat   class   array   

倒序输出一行字符串:

    public static void main(String[] args) {
        System.out.println("请输入一行字符串(按Enter执行):");
        Scanner input = new Scanner(System.in);
        String str = input.next();
        daoxu(str);
    }
    
    /**
     * 将字符串倒序
     * @param str
     */
    public static void daoxu(String str) {
        String string = "";
        char [] ch = str.toCharArray();
        for (int i = ch.length-1 ; i > -1 ; i--) {
            string += ch[i] + "";    //将字符转化成为字符串
        }
        System.out.println("字符串倒序输出:\n" + string);
    }

结果如下:

技术分享图片

方法不止有一种,赶快想想吧!看看还有多少种办法。

java习题:倒序输出一行字符串

标签:com   toc   gpo   inpu   out   static   stat   class   array   

原文地址:http://www.cnblogs.com/superdrew/p/8082347.html

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