level 3
焰食一切
楼主
#include <stdio.h>
int main (void)
{
float weight;
float valye;
printf ("Are you worth your weight in rhodium?\n");
printf ("Let's check it out . \n");
printf ("Please enter your weight in pounds: ");
scanf ("%f",&weight);
value = 770 * weight * 14.5833;
printf ("Your weight in rhodium is $%.2f.\n", value);
printf ("You are easily worth that! If rhodium prices drop, \n");
printf ("eat more to maintain your value .\n");
return 0;
}

2017年02月21日 12点02分
1
int main (void)
{
float weight;
float valye;
printf ("Are you worth your weight in rhodium?\n");
printf ("Let's check it out . \n");
printf ("Please enter your weight in pounds: ");
scanf ("%f",&weight);
value = 770 * weight * 14.5833;
printf ("Your weight in rhodium is $%.2f.\n", value);
printf ("You are easily worth that! If rhodium prices drop, \n");
printf ("eat more to maintain your value .\n");
return 0;
}
