warning C4244:
You are getting that because the program is assigning a double to an int -- for example assigning a double value to Mercury. That's not really a problem unless you expect Mercury to have fractions. The way to remove such warnings is to convert the result of the weight calculations into int before assigning to int variable, that's called typecastging. For example: Mercury = (int)(EarthWeight * 0.37);
The error on line 46: You have confused the syntax between printf() and cout. If you want to use printf() then don't use <<.
printf ("You're weight would be %d\n", Venus);