summaryrefslogtreecommitdiff
path: root/2120/CH3/EX3.1/ex3_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2120/CH3/EX3.1/ex3_1.sce')
-rwxr-xr-x2120/CH3/EX3.1/ex3_1.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/2120/CH3/EX3.1/ex3_1.sce b/2120/CH3/EX3.1/ex3_1.sce
new file mode 100755
index 000000000..1772f7bcf
--- /dev/null
+++ b/2120/CH3/EX3.1/ex3_1.sce
@@ -0,0 +1,10 @@
+// Exa 3.1
+clc;
+clear;
+close;
+// Given data
+t_c = 303-273;// in °C
+t_f = 9/5* t_c+32;// in °F
+disp(t_f,"When the temperature is 303 K then the thermometer reading in °F is : ");
+T_R = 460 + t_f;// °R
+disp(T_R,"The absolute value of the temperature in Rankine scale in °R is :");