ダメージ計算
モンスターのHPを減らすダメージ処理(計算処理)です。
package stage2;
public class Battle {
public static void main(String[] args) {
String m1 = "おばけ";
String m2 = "スライム";
int hp1 = 60;
int hp2 = 120;
System.out.println("モンスターが現れた!");
System.out.println("--------------------------");
System.out.println(m1 + " HP:" + hp1);
System.out.println(m2 + " HP:" + hp2);
System.out.println("--------------------------");
System.out.println("勇者の攻撃!");
System.out.println(m1 + "は20のダメージ");
hp1 = hp1 -20;
System.out.println("--------------------------");
System.out.println(m1 + " HP:" + hp1);
System.out.println(m2 + " HP:" + hp2);
System.out.println("--------------------------");
}
}