#include /* for printf, scanf */ #include /* for exit, EXIT_SUCCESS, EXIT_FAILURE */ int main() { double weight; printf("Please type your weight: "); scanf("%lf", &weight); printf("On each planet, your weight would be\n"); printf("%-11s %6.2f\n", "Mercury", .27 * weight); printf("%-11s %6.2f\n", "Venus", .85 * weight); printf("%-11s %6.2f\n", "Earth", 1.00 * weight); printf("%-11s %6.2f\n", "Mars", .38 * weight); printf("%-11s %6.2f\n", "Jupiter", 2.33 * weight); printf("%-11s %6.2f\n", "Saturn", .92 * weight); printf("%-11s %6.2f\n", "Uranus", .85 * weight); printf("%-11s %6.2f\n", "Neptune", 1.12 * weight); printf("%-11s %6.2f\n", "Pluto", .44 * weight); return EXIT_SUCCESS; }