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