题目:接受一个只包含小写字母的字符串,然后输出该字符串反转后的字符串。(字符串长度不超过1000)
题解:
import java.util.Scanner;
/**
* 输入abcd
* 输出dcba
*/
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while(scanner.hasNext()){
String str= scanner.nextLine();
//将字符串变成char数组再倒序输出
char[] chars= str.toCharArray();
for(int i=chars.length-1;i>=0;i--){
System.out.print(chars[i]);
}
System.out.println();
}
}
}
要点:
将字符串转为char数组再进行倒序输出。
注释:
1. string [ ] args:
string [ ] args:这是用来接收命令行传入的参数。 string []是声明args的数据类型,可以存储字符串数组。 通过cmd.exe程序来启动上述程序时会弹出命令窗口,你可以在那里输入一些参数,string [ ] args 指的就是在命令窗口输入的参数, 也就是命令行参数。
2. next() 和 nextline()比较
next():
1、一定要读取到有效字符后才可以结束输入。
2、对输入有效字符之前遇到的空白,next() 方法会自动将其去掉。
3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
4、next() 不能得到带有空格的字符串。
nextLine():
1、以Enter为结束符,也就是说 nextLine()方法返回的是输入回车之前的所有字符。
2、可以获得空白。