Newer
Older
AlgebraicDataflowArchitectureModel / AlgebraicDataflowArchitectureModel / src / experiment / push / Points.java
yoichiro on 2 May 2020 217 bytes push型の実験用クラスを作成
package experiment.push;

public class Points {
	private int points;
	public void updatePayment(int payment) {
		points = (int)Math.floor((payment*0.05));
	}
	public int getPoints() {
		return points;
	}
}