题目:倒置字符串
题目:倒置字符串
方法一
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
while (in.hasNextLine()) {// 注意,如果输入是多个测试用例,请通过while循环处理多个测试用例
String str = in.nextLine();
String[] s = str.split(" ");
StringBuilder sb = new StringBuilder();
for (int i = 0; i < s.length; i++) {
题目:倒置字符串最先出现在Python成神之路。
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/28682.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论