java将字符串"ABCDEFGIJKLM"逆序输出
答案:3 悬赏:10 手机版
解决时间 2021-03-09 13:39
- 提问者网友:人傍凄凉立暮秋
- 2021-03-09 08:23
java将字符串"ABCDEFGIJKLM"逆序输出
最佳答案
- 五星知识达人网友:孤独入客枕
- 2021-03-09 09:30
public class test {
public static void main(String[] args) {
String str = new String("ABCDEFGIJKLM");
System.out.println(reverseStr(str));
}
public static String reverseStr(String str) {
return (new StringBuffer(str).reverse().toString());
}
}
public static void main(String[] args) {
String str = new String("ABCDEFGIJKLM");
System.out.println(reverseStr(str));
}
public static String reverseStr(String str) {
return (new StringBuffer(str).reverse().toString());
}
}
全部回答
- 1楼网友:从此江山别
- 2021-03-09 11:23
String s="ABCDEFGIJKLM";
for(int i=s.length()-1;i>=0;i--)
System.out.print(s.charAt(i));
- 2楼网友:北方的南先生
- 2021-03-09 11:02
#include #include void main() {char s[8],*p=s; printf("请输入一个字符串:\n"); gets(s); // 将p指到字符串尾部 p = s + strlen(s) - 1; //if(*p!='\0')p++; for(;p>=s;p--) printf("%c",*p); printf("\n");}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯