java variables

java variables data types tutorial explained

#java #variables #variable

public class main {

public static void main(string[] args){

int x = 123;
double y = 3.14;
boolean z = true;
char symbol = '@';
string name = "bro";

system.out.println("hello "+name);

}
}

java variables