程序清单3.1示例程序

3.1示例程序

3.1platinum.c程序

/platinum.c --your weight in platinum/

include <studio.h>

int main (void)

{

float weight; /*你的体重 */

float value;/*相等重量的白金价值 */

printf(“Are you worth your weight in platinum?\n”);

printf("Let's check it out.\n");

printf("Please enter your weight in pounds: ");

/*获取用户的输入 */

scanf(“%f”, &weight);

/*假设白金的价格是每盎司$1700 */

/*14.5833用于把英镑常衡盎司转换为金衡盎司【1】 */

value=1700.0* weight *14.5833;

printf(“Your weight in platinum is worth $%.2f.\n”,value);

printf(“You are easily worth that! If platinum prices drop,\n”);

printf("eat more to maintain your value.\n");

return 0;

}

posted @ 2022-01-31 00:10  喻雅芬  阅读(103)  评论(0)    收藏  举报