[go: up one dir, main page]

0% found this document useful (0 votes)
18 views1 page

Java Variables

Variables in Java can store different data types like strings, integers, floats, characters and booleans, with strings and characters surrounded by quotes and booleans storing true or false values.

Uploaded by

Krishna Tiwari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views1 page

Java Variables

Variables in Java can store different data types like strings, integers, floats, characters and booleans, with strings and characters surrounded by quotes and booleans storing true or false values.

Uploaded by

Krishna Tiwari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Java variables

Variables are containers for storing data values.

In Java, there are different types of variables, for example:

 String - stores text, such as "Hello". String values are surrounded by double quotes

 int - stores integers (whole numbers), without decimals, such as 123 or -123

 float - stores floating point numbers, with decimals, such as 19.99 or -19.99

 char - stores single characters, such as 'a' or 'B'. Char values are surrounded by single quotes

 boolean - stores values with two states: true or false

You might also like