summaryrefslogtreecommitdiff
path: root/911/CH2/EX2.4/ex_2_4.sce
blob: f43f3eef705fa2234dbbba55888ba600dbb276fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// example 2.4//
clc
//clears the screen//
clear
//clears all existing variables//
a=bin2dec('1110');
//given numbers//
b=bin2dec('11011');
c=b-a;
d=dec2bin(c,8)
disp(c,'subtraction of given numbers in decimal form = ')
disp(d,'subtraction of given numbers in binary form = ')