Sorry, it's my first time, here is where I'm stuck with.
import java.util.*;
public class TuitionProgram{
static Scanner console = new Scanner (System.in);
public static void main (
String args[]){
int tuition;
int payment;
if (tuition < 5000) {
System.out.println("Tuition that is less than 5,000 is not allowed.");
} else {
System.out.println("Mode of payment");
System.out.println("[1] Full Payment - 20% Discount");
System.out.println("[2] Installment A - 5% Interest");
System.out.println("[3] Installment B - 10& Interest");
System.out.print("Enter mode of payment: ");
payment = reads.nextInt();