码迷,mamicode.com
首页 > 其他好文 > 详细

字符串转化为数字相加输出

时间:2015-09-24 23:56:24      阅读:504      评论:0      收藏:0      [点我收藏+]

标签:

设计思想:将字符串转化为数字,然后相加,最后输出和。


 
程序流程图:

 技术分享

 

 

 

 

 

 

 

 

源程序代码:

public class JavaAdd {

       public static void main(String[] args){

       String str1 = "12";

       String str2 ="23";

           int toInt1= 0 ;

           int otherInt=0 ;

           int taInt=0;

          

      

           toInt1 = Integer.parseInt(str1);

           otherInt = Integer.parseInt(str2);

           taInt=toInt1 +otherInt ;

            System.out.print(taInt); 

       }

}

 

结果截图:

技术分享

 

字符串转化为数字相加输出

标签:

原文地址:http://www.cnblogs.com/zuhaoran/p/4836803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!