Бряки-то ставить надо наверное
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Input a number: ");
int a = in.nextInt();
System.out.print("Input a number: ");
int b= in.nextInt();
System.out.println("Введите действия с числами\n 1.сложить\n 2.вычесть \n 3.Умножить \n 4.Поделить");
int t=in.nextInt();
switch (t) {
case 1:
System.out.print(a+b);
break;
case 2:
System.out.print(a-b);
break;
case 3:
System.out.print(a*b);
break;
case 4:
System.out.print(a/b);
break;
}
}
System.in, кстати, не закрывают