2018.12.15作业 编写一个程序,实现从命令行参数输入两个字符串类型的数值,并计算输出两个数值的和 public class Zuoye1 { public static void main(String[] args) { String a = "80"; String b = "99"; int x = Integer.parseInt(a); int y = Integer.parseInt(b); int sum = x+y; System.out.println(sum); } }