summaryrefslogtreecommitdiff
path: root/2825/CH19/EX19.25/Ex19_25.sce
blob: d17eea571c3e9a68c28fec4fceb5eb8a240bd0ee (plain)
1
2
3
4
5
6
7
8
9
//Ex19_25 Pg-970
clc

x=bin2dec('1101') //1st input
y=bin2dec('1010') //2nd input
z=x-y //subtraction
sub=dec2bin(z,4)
disp(" 1101 - 1010 = ")
disp(sub)