跳到内容

我如何在Java中读取输入的字符串?

更新时间
快连VPN:速度和安全性最佳的VPN服务
快连VPN:速度和安全性最佳的VPN服务

在java语言中我输入一个字符串: abc怎样可以用一个最简单

我写了一个更通用的方法,不限于3个字符的,任意长度的均可,权当交流:

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner input = new Scanner(System.in);

立即学习“Java免费学习笔记(深入)”;

System.out.println("请输入一个字符串:");

String str = input.next();

Reverse(str);

}

public static void Reverse(String str){

System.out.println("反转后的字符串为:");

for(int i = 0; i String temp = "";

temp = temp + str.charAt(str.length()-i-1);

System.out.print(temp);

}

java实现字符串反转要时间和空间复杂度最优

不知为何你有这种想法,如果有好的算法可以和我讨论下,下面我写了2个代码希望能帮到你。

package app;

public class TransDemo {

//abcdef“反转后为“fedcba

public static void main(String[] args){

String str = "abcdef";

char[] ary = str.toCharArray();

for(int i = 0; i

int temp = ary[ary.length-i-1]-ary[i];

ary[i] += temp;

ary[ary.length-i-1] -=temp;

}

str = new String(ary);

System.out.println(str);

}

}

package app;

public class TransDemo {

//abcdef“反转后为“fedcba

public static void main(String[] args){

String str = "abcdef";

char[] ary = str.toCharArray();

for(int i = 0; i

char c = ary[i];

ary[i] = ary[str.length()-1-i];

ary[str.length()-1-i] = c;

}

str = new String(ary);

System.out.println(str);

}

}

以上就是我如何在Java中读取输入的字符串?的详细内容,更多请关注本站其它相关文章!

更新时间

发表评论

请注意,评论必须在发布之前获得批准。