- 1. 设计思想、
a) 创建数组,for循环对数组遍历累加,输出结果。
- 2. 程序流程图、
- 3. 源程序代码和结果截图
public class qwe {
public static void main(String[] args) {
int sum=0;
System.out.println("numbers:"+args.length);
for(String arg:args) {
sum = sum + Integer.parseInt(arg);
}
System.out.println(sum);
}