简单翻转字符串

Posted bot攻略

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单翻转字符串相关的知识,希望对你有一定的参考价值。

所用语言:JAVA


public class Fanzhuang


public static void main(String[] args)
// TODO Auto-generated method stub
String s = "1234567890";

char []q = new char[11];

/*

*对s字符串从尾到头逐一赋值给数组q

*/

for(int i=s.length();i>0;i--)
q[i]=s.charAt(i-1);
System.out.print(q[i]);



以上是关于简单翻转字符串的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题344-简单-翻转字符串

LeetCode刷题541-简单-翻转字符串 II

LeetCode刷题541-简单-翻转字符串 II

Python - 翻转(reverse)字符串(string)的所有方法 详解

Python - 翻转(reverse)字符串(string)的所有方法 详解

单词字符串儿翻转,栈实现!