summaryrefslogtreecommitdiff
path: root/911/CH1/EX1.10.a/ex_1_10_a.sce
blob: c0071f7f374555344c690c936fb3d602711ca98f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//example 1.10(a)//
clc
//clears the screen//
clear
//clears already existing variables//
a=5264;
//given 7's compliment//
b=7777-5264;
//no in octal form//
d=oct2dec('2513');
//decimal conversion//
disp('binary conversion of given 7''s compliment is :')
e=dec2bin(d)
disp(e)