summaryrefslogtreecommitdiff
path: root/911/CH9/EX9.1/ex_9_1.sce
blob: 3b77ad62d4547c8c921def04ae76c91cf12d244d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//exmaple 9.1//
clc
//clears the screen//
clear
//clears all existing variables//
a=bin2dec('0000')
//given initial state//
c=bin2dec('0011')
//given final state//
n=input('Enter the loop no = ')
d=(16*(n-1))+c-a;
disp(d,'No of negative clock cycles occured till now= ')