字符串转化为数字相加输出
设计思想:将字符串转化为数字,然后相加,最后输出和。
程序流程图:
源程序代码:
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);
}
}
结果截图: