编程学习网为您整理以下代码实例,主要实现:使用浮点类型值计算铂金的重量,希望可以帮到各位朋友。
#include <stdio.h>
int main(voID)
{
float weight;
float value; /* platinum equivalent */
printf("Please enter your weight in pounds: ");
/* get input from the user */
scanf("%f", &weight);
value = 1700.0 * weight * 14.5833;
printf("Your weight in platinum is worth $%.2f.\n", value);
return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!