欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【API】反转输入字符(Java)

程序员文章站 2022-04-29 17:57:08
请求输入字符, 输出反转。 试了试行数更少的写法,还真也行,输出效果没有坏掉。 话说玩API比搞项目舒服多了…… ......

请求输入字符,

输出反转。

 

 1 import java.util.scanner;
 2 
 3 public class t01 {
 4 
 5     public static void main(string[] args) {
 6         /**
 7          * get str from kbd
 8          * out a new str that sakasamad
 9          */
10         system.out.print("in put a str :  | ");
11         string str = new scanner(system.in).nextline();
12         str = new stringbuilder(str).reverse().tostring();
13         system.out.print("fanzhuan :      | "+str);
14         
15         system.out.println("\n- -------------- --- -\n");
16         
17         system.out.print("in put a str :  | ");
18         system.out.print("fanzhuan :      | "+new stringbuilder(new scanner(system.in).nextline()).reverse().tostring());
19     
20     
21         //well... i don't know how to use close() now...    
22     }
23 }

 

试了试行数更少的写法,还真也行,输出效果没有坏掉。

 

----

 

话说玩api比搞项目舒服多了……