diff options
Diffstat (limited to '911/CH1/EX1.6.a/ex_1_6_a.sce')
-rw-r--r-- | 911/CH1/EX1.6.a/ex_1_6_a.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/911/CH1/EX1.6.a/ex_1_6_a.sce b/911/CH1/EX1.6.a/ex_1_6_a.sce new file mode 100644 index 000000000..8bf0d8234 --- /dev/null +++ b/911/CH1/EX1.6.a/ex_1_6_a.sce @@ -0,0 +1,14 @@ +// example 1.6 (a) / /
+//conversion of octal to binary//
+clc
+//clears the screen//
+clear
+//clears all existing variables//
+a=374.26;
+b=floor(a);
+t=oct2dec('374');
+z = dec2bin (t);
+disp ('binary conversion of given no is : ' )
+// conversion of octal number to binary //
+disp (z)
+// answer in binary form//
\ No newline at end of file |