李响


私信TA

用户名:dotcpp0664563

访问量:1931

签 名:

等  级
排  名 289
经  验 5666
参赛次数 0
文章发表 19
年  龄 0
在职情况 学生
学  校 淄博职业学院
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

import java.util.Scanner;

public class 单词翻转 {
   public static void main(String[] args) {
       Scanner sc = new Scanner(System.in);
       String s=sc.nextLine();
       String [] s1=s.split(" ");
       for (int i = 0; i < s1.length; i++) {
           for (int j = 0; j < s1[i].length(); j++) {
               System.out.print(s1[i].charAt(s1[i].length()-1-j));
           }
           if (i==s1.length-1){                                             //防止最后一个单词的后面多出一个空格
           }else {
               System.out.print(" ");
           }

       }
   }
}

 

0.0分

0 人评分

  评论区

  • «
  • »