gpt4 book ai didi

java - 如何完成反向字符串?

转载 作者:行者123 更新时间:2023-12-02 12:39:01 25 4
gpt4 key购买 nike

所以我的老师告诉我创建一个字符串,使我输入的任何内容都以相反的顺序进行(例如“你好”变成“ereht olleh”)。到目前为止,我对 body 进行了研究,并想出了这个

   public class Main {

/**
* @param args the command line arguments
*/

public static void main(String[] args) {
(The input needs to be in here)}}



public static String rev(String str) {

String reversed = "hello there";
for (int i = 0; i < str.length(); i++) {
reversed = str.charAt(i) + reversed;
}
return reversed;

我现在的问题是,我需要在 public static void main(String[] args) 下放置什么才能使其工作。是的,我知道这是作业,我尝试通过这本书寻求帮助(没有运气)。我尝试在互联网上查找(由于我对更高级的方法知之甚少,所以没有运气)。我将不胜感激任何帮助并提前感谢任何人。如果有帮助的话我会使用 netbeans。

最佳答案

public static String rev(String str) {
String reversed = "";
for (int i = 0; i < str.length(); i++) {
reversed = str.charAt(i) + reversed;
}
return reversed;
}

public static void main(String[] args) {
if (args.length > 0) {
System.out.println(rev(args[0]));
}
}

读取 args 数组来执行此操作。

关于java - 如何完成反向字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3952259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com