summaryrefslogtreecommitdiff
path: root/3808/CH4/EX4.4/Ex4_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3808/CH4/EX4.4/Ex4_4.sce')
-rw-r--r--3808/CH4/EX4.4/Ex4_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3808/CH4/EX4.4/Ex4_4.sce b/3808/CH4/EX4.4/Ex4_4.sce
new file mode 100644
index 000000000..ec7501830
--- /dev/null
+++ b/3808/CH4/EX4.4/Ex4_4.sce
@@ -0,0 +1,15 @@
+//Chapter 04:Number Theory and Cryptography
+
+clc;
+clear all;
+
+i=0
+oct=input("Enter the octal number:")
+tmp=oct
+dec=0
+while(oct~=0)
+ dec=dec+(modulo(oct,10))*(8**(i+0))
+ i=i+1
+ oct=int(oct/10)
+end
+disp(dec,'Equivalent Decimal Value:')