我在两个LinkedList
中存储了两个整数,
-
LinkedList a
stores -49999 -
LinkedList b
stores 100001
如何将这两个整数相加?
尝试如下:
long result = a.get(0) + b.get(0);
处理result