Write declaration statements to declare and initialize two variables: one is an integer variable named age, initialized to 18, and the other variable, named weight, is initialized to 114.5.
.
.
Click on the title for the solution
.
.
int age=18;
float weight=114.5;
.
Click on the title for the solution
.
.
This is the answer:
:
int age=18;
float weight=114.5;
Comments
Post a Comment