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

回文字符串

时间:2017-06-24 22:50:00      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:ringbuf   system   string   lin   tar   oid   超过   main   ever   

import java.util.Scanner;

/**
 * 给出一个长度不超过1000的字符串,判断它是不是回文(顺读,逆读均相同)的
 * @author kif
 *
 */
public class Palindrome {
	
	public static void judge(String str){
		String sOne = str.substring(0, str.length()/2);
		System.out.println(sOne.startsWith(new StringBuffer(str).reverse().substring(0, str.length()/2)));
	}
	
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner input = new Scanner(System.in);
		String str = input.nextLine();
		Palindrome.judge(str);
		input.close();
	}

}

 

回文字符串

标签:ringbuf   system   string   lin   tar   oid   超过   main   ever   

原文地址:http://www.cnblogs.com/kongkongFabian/p/7074626.html

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