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

String-字符串反转

时间:2015-12-23 01:59:39      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

package cn.lianxi;

import java.util.Scanner;
/*
 * 
 * 字符串反转
 * 举例:键盘录入 “abc”
 * 结构:输出“cba”
 * 
 * 分析:1.键盘录入一个字符串
 *          2.定义一个新字符串
 *         3.倒着遍历字符串,得到每一个字符
 *                 a.length()和charAt()结合
 *                 b.把字符串转换成字符数组
 *         4,用新字符串把每一个字符拼接起来
 *         5输出新字符串
 * */
public class FanZhan {
    public static void main(String[] args) {
        /*
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入字母:");
        String s = sc.nextLine();
        String result = "";
        char[] chs = s.toCharArray();
        for(int i = chs.length-1;i>=0;i--){
            result += chs[i];
        }
        System.out.println(result);*/
        
        
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入字母:");
        String s = sc.nextLine();
        String result = "";
        for(int i =s.length()-1;i>=0;i--){
            result += s.charAt(i);
        }
        System.out.println(result);
            
    }
    
}

 

String-字符串反转

标签:

原文地址:http://www.cnblogs.com/Deleting/p/5068694.html

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