[HJ12] 字符串反转 你的名字 2021-09-25 14:36 371阅读 0赞 > 描述 > 接受一个只包含小写字母的字符串,然后输出该字符串反转后的字符串。(字符串长度不超过1000) > **输入描述:** > 输入一行,为一个只包含小写字母的字符串。 > **输出描述:** > 输出该字符串反转后的字符串。 > **示例1** > 输入:abcd > 输出:dcba 代码呈现 /** * @auther: 巨未 * @DATE: 2021/8/30 0030 15:41 * @Description: */ import java.util.Scanner; public class Main{ public static String rev(String str, int start, int end ){ char[] chars = str.toCharArray(); while (start < end) { char tmp = chars[start]; chars[start] = chars[end]; chars[end] = tmp; start++; end--; } return String.copyValueOf(chars); } public static void main(String[] args) { Scanner s = new Scanner(System.in); String str = s.nextLine(); System.out.println(rev(str,0,str.length()-1)); } }
相关 反转字符串 如何利用python实现字符串的反转。 1 问题 编写一个函数,其作用是将输入的字符串反转过来。输入=\[”h”,”e”,”l”,”l”,”o”\],输出=\[”o”, 拼搏现实的明天。/ 2024年03月23日 22:09/ 0 赞/ 104 阅读
相关 字符串反转 include "string" include "stdio.h" include "iostream" using namespace st 淡淡的烟草味﹌/ 2022年09月24日 12:23/ 0 赞/ 231 阅读
相关 反转字符串 public static void reverse(char[] a) { if (a != null) { int len = a.len 一时失言乱红尘/ 2022年08月11日 07:59/ 0 赞/ 254 阅读
相关 字符串反转 int StringReverse(char str[], int length) { if (str==NULL) { ﹏ヽ暗。殇╰゛Y/ 2022年08月04日 00:43/ 0 赞/ 300 阅读
相关 字符串反转 问题及代码: / Copyright (c)2016,烟台大学计算机与控制工程学院 All rights reserved. 太过爱你忘了你带给我的痛/ 2022年07月29日 08:45/ 0 赞/ 286 阅读
相关 字符串反转 1. 使用Array.Reverse方法 对于字符串反转,我们可以使用.NET类库自带的Array.Reverse方法 public static strin ╰+哭是因爲堅強的太久メ/ 2022年05月28日 01:46/ 0 赞/ 386 阅读
相关 字符串反转 //将字符串的前一段移到字符串最后 /\ 比如,字符串"abcdefg"将"abc"移到最后成为"defgabc"; 主要思想是: 1、将前面一部分反转 2 川长思鸟来/ 2022年05月12日 01:36/ 0 赞/ 339 阅读
相关 [HJ12] 字符串反转 > 描述 > 接受一个只包含小写字母的字符串,然后输出该字符串反转后的字符串。(字符串长度不超过1000) > 输入描述: > 输入一行,为一个只包含小写字母的字符 你的名字/ 2021年09月25日 14:36/ 0 赞/ 372 阅读
相关 字符串反转 字符串反转。 好了,既然找不到也不必耿耿于怀了。今天读了《高效能程序员的修炼》第四章,发现自己好烂,如果按照作者的看法,我是无论如何都入不了他的法眼 谁践踏了优雅/ 2021年06月24日 14:00/ 0 赞/ 679 阅读
相关 反转字符串 ![watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhp 末蓝、/ 2021年06月10日 20:38/ 0 赞/ 652 阅读
还没有评论,来说两句吧...