eg_6

Posted 牧羊人的世界

tags:

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

问题描述:

  将一句话的单词进行倒置,标点不倒置。比如 I like beijing. 经过函数后变为:beijing. like I 

Demo1:

import java.util.Scanner;

public class Solution {
    public static void main(String[] args){
    	Scanner sc = new Scanner(System.in);
    	String input = sc.nextLine();
    	String[] s1 = input.split(" ");
    	StringBuffer s2 = new StringBuffer();
    	for(int i=s1.length-1;i>=0;i--){
    		s2.append(s1[i]+" ");
    	}
    	System.out.println(s2.toString());
    }
}

 运行结果:

I like beijing.
beijing. like I

以上是关于eg_6的主要内容,如果未能解决你的问题,请参考以下文章

性能问题eg

VSCode自定义代码片段6——CSS选择器

兼容ie8,firefox,chrome浏览器的代码片段

CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段

这些 C++ 代码片段有啥作用?

[AndroidStudio]_[初级]_[配置自动完成的代码片段]