Write a declaration for a variable channel that can hold TV channel numbers (1 to 900) and a variable hours_recorded that can hold the number of hours of TV recorded (numbers like 1.0 or 3.5).
.
.
Click on the title for the solution
.
.
int channel;
float hours_recorded;
.
Click on the title for the solution
.
.
This is the answer:
:
int channel;
float hours_recorded;
Comments
Post a Comment