Hi guys, I have this code and when I try to compile and run it gives me an <identifier> expected error.

The code with the irrelevant parts taken out.

Code:
package ACCOUNT; 
import java.util.Scanner; 
import java.util.GregorianCalendar; 
import javax.swing.*; 

class Bank
{ 
static private double bal; //Account balance 
static int withdraw; //amount
...