variables en java code example
Example 1: declare variables java
String hello = "hello";
short one = 12;
int two = 2000;
long number = 2000000;
float decimal = 1.512
double million = 1.387892847395
Bool condition = true;
char a = "a";
Example 2: Variables in java
public class LocalVariableExample
{
public void employeeDetails()
{
int empAge = 22;
String name = "Sachin";
}
public static void main(String[] args)
{
LocalVariableExample obj = new LocalVariableExample();
System.out.println("Employee name is : " + name + ", and age : " + empAge);
}
}