summaryrefslogtreecommitdiff
path: root/1316/CH1/EX1.17/example1_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '1316/CH1/EX1.17/example1_17.sce')
-rw-r--r--1316/CH1/EX1.17/example1_17.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1316/CH1/EX1.17/example1_17.sce b/1316/CH1/EX1.17/example1_17.sce
new file mode 100644
index 000000000..a8b4c7f96
--- /dev/null
+++ b/1316/CH1/EX1.17/example1_17.sce
@@ -0,0 +1,13 @@
+//Chapter 1
+//Example 1.17
+//Page 40
+
+clear;
+clc;
+
+TF=22.4;
+V=412;
+
+//Finding the value of temperature
+printf("The value of temperature is equal to %.6f degree celcius \n",V/TF);
+printf("Our result can be significant to 3 places = %.1f degree celcius",V/TF);