summaryrefslogtreecommitdiff
path: root/3836/CH9/EX9.9/Ex9_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3836/CH9/EX9.9/Ex9_9.sce')
-rw-r--r--3836/CH9/EX9.9/Ex9_9.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3836/CH9/EX9.9/Ex9_9.sce b/3836/CH9/EX9.9/Ex9_9.sce
new file mode 100644
index 000000000..2d15c1464
--- /dev/null
+++ b/3836/CH9/EX9.9/Ex9_9.sce
@@ -0,0 +1,21 @@
+clear
+//Initialization
+ni=26 //Decimal number
+
+//Calculation
+
+bini = 0
+i = 1
+while (ni > 0)
+ rem = ni-int(ni/2)*2
+ ni = int(ni/2)
+ bini = bini + rem*i
+ i = i * 10
+end
+w= bini
+
+
+
+//Declaration
+printf("\n Binary Equivalent = %d",w)
+