美文网首页
21,一组字符串逐个分割,并且转为int类型进行相加

21,一组字符串逐个分割,并且转为int类型进行相加

作者: 滔滔逐浪 | 来源:发表于2019-02-20 17:22 被阅读2次
    public class aa {
        public static void main(String[] args) {
        String b = "333227619";
            String c[] = b.split("");
            int d = 0;
            for (int j = 0; j < c.length; j++) {
    
                d += Integer.parseInt(c[j]);
                 System.out.println(d);
          System.out.println(Integer.parseInt(c[j])+Integer.parseInt(c[j+1]));
            }
    }
    
    
    
    
    
    
    
    
    

    相关文章

      网友评论

          本文标题:21,一组字符串逐个分割,并且转为int类型进行相加

          本文链接:https://www.haomeiwen.com/subject/rfahyqtx.html