diff options
Diffstat (limited to '911/CH2/EX2.8.b/ex_2_8_b.sce')
-rw-r--r-- | 911/CH2/EX2.8.b/ex_2_8_b.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/911/CH2/EX2.8.b/ex_2_8_b.sce b/911/CH2/EX2.8.b/ex_2_8_b.sce new file mode 100644 index 000000000..d9b29fadd --- /dev/null +++ b/911/CH2/EX2.8.b/ex_2_8_b.sce @@ -0,0 +1,18 @@ +//example 2.8//
+//multiplication in hexadecimal form//
+clc
+//clears the screen //
+clear
+//clears all the existing variables //
+x=hex2dec('2B')
+//first number to be multiplied is x //
+//hexadecimal to decima l conversion //
+y=hex2dec ('3' )
+//second number to be multiplied is y //
+z=x*y
+//multiplication//
+a= dec2hex(z)
+//decimal to hexadecimal conversion //
+disp (a,'the multiplication of given numbers results in hexadecimal form = : ' )
+disp (z, 'the multiplication of given numbers results in decimal form =: ' )
+// answer in binary number //
\ No newline at end of file |