1. 程式人生 > >程序清單3.1_rhodium.c程序_《C Primer Plus》P32

程序清單3.1_rhodium.c程序_《C Primer Plus》P32

C Primer Plus

// rhodium.cpp : 定義控制臺應用程序的入口點。 // /* rhodium.c -- 用金屬銠衡量您的的體重 */ /* 時間:2018年06月02日 21:26:34 代碼:程序清單3.1_rhodium.c程序_《C Primer Plus》P32 目的:初識浮點小數變量類型 float;基本的數學換算,英鎊轉換成盎司; */ #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { float weight; /* 用戶的體重 */ float value; /* 相等重量的銠的價值 */ /* worth(等值的)/thodium(金屬:銠) */ printf("Are you worth your weight in rhodium?\n"); printf("Let's chech it out.\n"); /* chech it out(一探究竟) */ printf("Please enter your weight in pounds: "); /* pound(英鎊) */ /* 從用戶處獲取輸入 */ scanf("%f", &weight); /* 假設銠為每盎司 770 美元 */ /* 14.5833 把常衡制的英鎊轉換為金衡制的盎司 */ value = 770 * weight * 14.5833; printf("Your weight in rhodium is worth $%.2f.\n", value); /* %.2f(意為保留2位小數)*/ printf("Your are easily worth that! If rhodium prices drop. \n"); printf("eat more to maintain your value. \n"); getchar(); getchar(); return 0; } /* 在VS2010中運行結果: -------------------------------------------------- Are you worth your weight in rhodium? Let's chech it out. Please enter your weight in pounds: 150 Your weight in rhodium is worth $1684371.13. Your are easily worth that! If rhodium prices drop. eat more to maintain your value. -------------------------------------------------- 譯文如下: 你是否值得你在銠上的體重? 讓我們來看看它。 請輸入你的體重,以磅為單位:150 你的銠重量值為1684371.13美元。 你很容易就是值得的! 如果銠價格下跌。 多吃東西來保持你的價值。 -------------------------------------------------- */


程序清單3.1_rhodium.c程序_《C Primer Plus》P32