Newer
Older
POS_for_GUI / src / Total.java
k-fujii on 4 Apr 2022 260 bytes [add]各リソースを追加
import java.util.*;

public class Total {
	private int value;
	public void updateHistory(List<Integer> history) {
		Integer temp_sum1 = 0;
		for (Integer x: history) {
			temp_sum1 += x;
		}
		value = temp_sum1;
	}
	public int getValue() {
		return value;
	}
}