A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

hello world welcome to java
每个单词倒叙输出。
输出结果是: olleh dlrow emoclew ot avaj

1 个回复

倒序浏览
public class Print {
public static void main(String[] args) {
        String word = "hello world welcome to java";
        String [] s=word.split(" ");
       
        for (int i = 0; i < s.length; i++) {
                for (int j = s[i].length()-1; j >=0 ; j--) {
                        System.out.print(s[i].charAt(j));
                }
                System.out.print(" ");
        }
}
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马