temp

Feb 24, 2019 at 6:11am
How do you correctly define a variable called "temp" of type "double" that is initialised to a value of 20.0
Feb 24, 2019 at 6:49am
Is that what you're looking for?
1
2
double temp = 20;
temp = 10;

Feb 24, 2019 at 7:32am
Topic archived. No new replies allowed.