Answers for "declare variable java"

11

declare variables java

/* Depending on what variables you want to declare */
String hello = "hello"; //characters
short one = 12;//shorter integers
int two = 2000; //complete integer up too 32 bits
long number = 2000000; //complete integer up to 64 bits
float decimal = 1.512 //up to 7 decimal digits
double million = 1.387892847395 //up tp 16 decmial digits
Bool condition = true; // true or false
char a = "a"; // unicode character
Posted by: Guest on October-01-2020
1

how to declare an int

int i(0);
Posted by: Guest on March-25-2020
3

java variable declaration

java decleration

float simpleInterest; //Declaring float variable
Posted by: Guest on May-08-2020
0

java decler variabel

creating first grapper

float simpleInterest; //Declaring float variable
int time = 10, speed = 20; //Declaring and Initializing integer variable
char var = 'h'; // Declaring and Initializing character variable
Posted by: Guest on May-08-2020
0

why use var in java

improve the readability of code for other developers who read the code. 
In some situations
Posted by: Guest on September-02-2021
0

declare variable java

int a; // declaretion of variable
a = 10; // initializetion of variable
Posted by: Guest on December-08-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language