summaryrefslogtreecommitdiff
path: root/1241/CH2/EX2.10/exa2_10.sce
blob: e9fcb630201a7b90df33b18774bf66099fee8963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Example 2-10//
//Binary Subtraction//
clc
//clears the console//
clear
//clears all existing variables//
x=bin2dec('100')
y=bin2dec('1')
//binary to decimal conversion//
z=x-y
//subtraction//
a=dec2bin(z)
//decimal to binary conversion//
disp('subtraction of two binary numbers is:')
disp(a)
//answer in binary form//