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

华为机试:字符逆序

时间:2017-09-22 10:08:48      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:for   static   title   bsp   div   ext   java   ati   main   

和字符串反转类似,详见http://www.cnblogs.com/zdtiio/p/7570806.html

题目描述

将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。 如:输入“I am a student”,输出“tneduts a ma I”。

 

 

 
输入参数:

inputString:输入的字符串

 


返回值:

输出转换好的逆序字符串

 

 

输入描述:

输入一个字符串,可以有空格

输出描述:

输出逆序的字符串

示例1

输入

I am a student

输出

tneduts a ma I

 

Java:

 1 import java.util.Scanner;
 2 
 3 public class Main {
 4     
 5     public static void main(String[] args) {
 6         Scanner sc=new Scanner(System.in);
 7         while(sc.hasNext()){
 8             String s = sc.nextLine();
 9             for(int i = s.length() - 1; i >= 0; i--){
10                 System.out.print(s.charAt(i));
11             }
12             System.out.println();
13         }
14         sc.close();
15     }
16     
17 }

 

华为机试:字符逆序

标签:for   static   title   bsp   div   ext   java   ati   main   

原文地址:http://www.cnblogs.com/zdtiio/p/7572648.html

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