Could someone help me solve why the result says i need an ')' ?
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); boolean isSuspended = read.nextBoolean(); int ourScore = read.nextInt(); int theirScore = read.nextInt(); // your code goes here if(isSuspended is false) { if(ourScore = theirScore) System.out.println("Draw"); if(ourScore < theirScore) System.out.println("Lost"); if(ourScore > theirScore) System.out.println ("Won"); }else{ if(isSuspended is true ) System.out.println("Suspended"); } } } ........................................................................ Im trying to get this code to work in the nested if/else practice. I think ive set it up at least conceptually well, but the program when run says i need a parenthesis. Does anybody see whats wrong? Thanks