我这里有问题,我想打印hp2
但它说错误。我怎么解决这个问题?我怎样才能打印hp2
没有错误?谢谢你,对不起我的英语不好。
import java.util.Scanner;
public class lala {
public static void main (String []args) {
Scanner scan = new Scanner(System.in);
int hp=100;
int hp1;
int go=10;
int a;
hp1=hp-go;
System.out.println(hp1);
a=scan.nextInt();
int hp2;
if (a==1) {
hp2=hp1-10;
} else {}
System.out.println(hp2);
}
}