diff options
Diffstat (limited to '3845/CH13/EX13.1/Ex13_1.sce')
-rw-r--r-- | 3845/CH13/EX13.1/Ex13_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3845/CH13/EX13.1/Ex13_1.sce b/3845/CH13/EX13.1/Ex13_1.sce new file mode 100644 index 000000000..04344cfcf --- /dev/null +++ b/3845/CH13/EX13.1/Ex13_1.sce @@ -0,0 +1,10 @@ +//Example 13.1
+T_C=25;//Temperature (C)
+T_F=(9/5*T_C)+32;//Temperature (F)
+printf('a.Room temperature = %0.1f F',T_F)
+T_K=T_C+273.15;//Temperature (K)
+printf('\nb.Room temperature = %0.1f K',T_K)
+//Answer varies due to round off error
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
+
|