对于Java来说还是一个新手我有一个很快的问题,并且没有在这里看到它。我有2个数组列表,我需要将每个列表中索引位置中保存的数字相乘以提供答案, 例如 ArrayListAlpha(0,1,2,3等) ArrayListBeta(0,1,2,3等)
So I need to multiply 1x1, 2x2, 3x3 etc. and then display the answers onscreen in a descending order; I also need to show the calculation and the information in the arrays.
e.g.
1x1 =
2x2 =
3x3 =
Can anyone point me in the right direction?
Thanks
答案 0 :(得分:1)
一个非常简单的方法是:
for(int i=0 ;i<ArrayListAlpha.size();i++){
System.out.println(i+"x"+i+" = "+ArrayListAlpha.get(i)*ArrayListBeta.get(i));
}
答案 1 :(得分:1)
仅供参考,这不是&#34;我给你一个结果答案&#34; ...
您可以使用谷歌等轻松解决您的问题......
无论如何,您可能会查找Java API的"ArrayList"文档页面
在那里,您会找到get(int index);
然后进行for
循环,你就完成了。