Answer: heres the code
Step-by-step explanation:
import java.util.Scanner;
public class whilelooptwo{
public static void main(String[] args)
{
int v = 10000;
int year = 1;
while(year <= 9){
year += 1;
int t = v *= 1.05;
System.out.println("Tutition for year " + year + " is " + t);
}
}
}