Initial commit

This commit is contained in:
Mark J Price 2022-05-14 07:49:19 +01:00
parent de7fb3c192
commit f277c6acb8
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@ int integerNumber = -23;
float realNumber = 2.3F;
// double means double-precision floating point
// double is the default type for a number value with a decimal point .
double anotherRealNumber = 2.3; // double literal
// three variables that store the number 2 million

View file

@ -9,6 +9,7 @@ int integerNumber = -23;
float realNumber = 2.3F;
// double means double-precision floating point
// double is the default type for a number value with a decimal point .
double anotherRealNumber = 2.3; // double literal
// three variables that store the number 2 million