summaryrefslogtreecommitdiff
path: root/767/CH3/EX3.2.1
diff options
context:
space:
mode:
Diffstat (limited to '767/CH3/EX3.2.1')
-rwxr-xr-x767/CH3/EX3.2.1/Ch03Exa3_2_1.sci8
1 files changed, 8 insertions, 0 deletions
diff --git a/767/CH3/EX3.2.1/Ch03Exa3_2_1.sci b/767/CH3/EX3.2.1/Ch03Exa3_2_1.sci
new file mode 100755
index 000000000..f432f8fae
--- /dev/null
+++ b/767/CH3/EX3.2.1/Ch03Exa3_2_1.sci
@@ -0,0 +1,8 @@
+// Scilab code Exa3.2.1: To determine how many curie in 10^10 Bq : Page 124 (2011)
+Bq = 1/3.7e+010; // Number of curie in one Bq, Ci
+N = 10^10*Bq; // The number of curie in 10^10 Bq, Ci
+printf("\nThe number of curie in 10^10 Bq : %4.2f Ci", N)
+// Result
+// The number of curie in 10^10 Bq : 0.27 Ci
+
+