summaryrefslogtreecommitdiff
path: root/1553/CH1/EX1.19/1Ex19.sce
blob: 83207ba77efc60d6f2b958e15c3af84af6216dc0 (plain)
1
2
3
4
5
6
7
8
9
//chapter 1 Ex 19

clc;
clear;
close;
dividend=12401; quotient=76; remainder=13;

divisor=(dividend-remainder)/quotient;
printf("The divisor is %d.",divisor);