summaryrefslogtreecommitdiff
path: root/3648/CH27/EX27.1/Ex27_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH27/EX27.1/Ex27_1.sce')
-rw-r--r--3648/CH27/EX27.1/Ex27_1.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH27/EX27.1/Ex27_1.sce b/3648/CH27/EX27.1/Ex27_1.sce
new file mode 100644
index 000000000..c52110945
--- /dev/null
+++ b/3648/CH27/EX27.1/Ex27_1.sce
@@ -0,0 +1,9 @@
+//Example 27_1
+clc();
+clear;
+//What fraction of atomic mass of Uranium is due to its electrons
+n=92 //Units in constant
+mass=0.000549 //Units in u
+tmass=235 //units in u
+per=(n*mass)/tmass //Units in fractions
+printf("The fraction of atomic mass of Uranium is due to its electrons is=%.6f",per)