Friday, April 1, 2011

Constants

/*
RULE: constants are should be capital letters
they are used final and static keywords
*/

class Constants
{
static final double accountNumber=22323543;
public static void main(String[] args)
{
final float PI=22.7f;
System.out.println("legel constant code convention");
}
}