首页 > 学院 > 开发设计 > 正文

3.反转的串

2019-11-06 06:15:36
字体:
来源:转载
供稿:网友
package s5;public class test3 {    /*     * 反转的串 解决同一个问题往往有许多方法。小刚很喜欢别出心裁。一天他在纸上草草写了一段程序,     * 实现了把串s中的内容反转后放入s2的功能。也就是说,s2最后的内容变成了 “7654321”。     */    public static void main(String[] args) {        // TODO Auto-generated method stub        String s = "1234567";        String s2 = "";        for (int i = 0; i < s.length(); i++) {            s2 = s.charAt(i) + s2;        }        System.out.PRintln(s2);    }}
上一篇:http协议学习系列

下一篇:2.计算行程

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表