+ 2
Hi guys! Is there anywhere i can post a picture of a problem i am having with converting?
Converting variables to decimal numbers
5 Answers
+ 7
Tap 'Whats on your mind' or 'Share your thoughts' or 'Whats going on' from the home section of SoloLearn. Then you will find an option to upload picture at the bottom menu.
+ 4
Post the picture in the activity feed and share the link with your question.
+ 1
That's awesome!
Thank you so much!
0
Int to double:
int i = 10;
double d = i;
Double to int:
double d = 10.11;
int i = (int) d;
0
How do I post a picture?