declare the variable and the data type of 1001
Answers
Answered by
0
Explanation:
If you want to declare two integer type variables with the names myInteger and MyInteger in Java it will be written as: int myInteger; int MyInteger; This declaration comprises of 3 parts – first the data type int is declared, then the variable name myInteger and finally the statement is concluded with a semicolon
Similar questions