java集合里的数字相加
问题描述:
java集合里的数字相加
List
list.add(1);
list.add(2);
求1+2的值
答
int result = 0;
for(Integer num:list){
result +=num;
}