diff options
Diffstat (limited to '273/CH25/EX25.1/ex25_1.sce')
-rwxr-xr-x | 273/CH25/EX25.1/ex25_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/273/CH25/EX25.1/ex25_1.sce b/273/CH25/EX25.1/ex25_1.sce new file mode 100755 index 000000000..c306e35dd --- /dev/null +++ b/273/CH25/EX25.1/ex25_1.sce @@ -0,0 +1,14 @@ +clc;clear;
+//Example 25.1
+//calculation of sum of two binary numbers
+
+//given values
+X='0011';//first binary number
+Y='0101';//second binary number
+
+//calculation
+x=bin2dec(X);//decimal equivalent
+y=bin2dec(Y);//decimal equivalent
+z=x+y;
+Z=dec2bin(z);
+disp(Z,'Sum of the given binary numbers is ')
|