View Single Post
Old Mar 10th, 2008, 8:42 PM   #1
chelfc
Newbie
 
Join Date: Mar 2008
Posts: 2
Rep Power: 0 chelfc is on a distinguished road
<identifier> expected error java

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.

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 of times withdrawn 

static void setBal(double amount){bal = amount;}
static double getBal(){return bal;}

public static void main(String[] args){
//code
}

class Charge extends Bank{
  
double fee = Bank.withdraw * 0.10;
double tempbal = Bank.getBal();
double amount = tempbal - fee ;
Bank.setBal(amount);
    }

when I run it points to the line Bank.setBal(amount) and says <identifier> expected

can someone help?
chelfc is offline   Reply With Quote