Can anyone tell me why this code doesn't compile? It has something to do with the line that reads: reply = myScanner.findI nLine(".").char At(0);
Code:
import java.util.Scanner;

class TicketPriceWithDiscount {

	public static void main(String args[]) {
		Scanner myScanner = new Scanner(System.in);
		int age;
		double price = 0.00;
		char reply;
		
		System.out.print("How
...