diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1367/CH2/EX2.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1367/CH2/EX2.1')
-rwxr-xr-x | 1367/CH2/EX2.1/2_1.sce | 11 | ||||
-rwxr-xr-x | 1367/CH2/EX2.1/ex_2_1_r.txt | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1367/CH2/EX2.1/2_1.sce b/1367/CH2/EX2.1/2_1.sce new file mode 100755 index 000000000..55171e8a9 --- /dev/null +++ b/1367/CH2/EX2.1/2_1.sce @@ -0,0 +1,11 @@ +//Find average atomic weight of Hydrogen.
+//Exa:1.1
+close;
+clc;
+clear;
+a1=1.0078;//atomic weight of H-1
+a2=2.0143;//atomic weight of H-2
+p1=99.985;//% of H-1
+p2=.015;//% of H-2
+a=((a1*p1)+(a2*p2))/100
+disp(a,"Average atomic weight of Hydrogen = ");
\ No newline at end of file diff --git a/1367/CH2/EX2.1/ex_2_1_r.txt b/1367/CH2/EX2.1/ex_2_1_r.txt new file mode 100755 index 000000000..b860b7997 --- /dev/null +++ b/1367/CH2/EX2.1/ex_2_1_r.txt @@ -0,0 +1,5 @@ +
+ Average atomic weight of Hydrogen =
+
+ 1.007951
+
\ No newline at end of file |