Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
27
Task/Egyptian-division/QBasic/egyptian-division.basic
Normal file
27
Task/Egyptian-division/QBasic/egyptian-division.basic
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
DIM table(32, 2)
|
||||
dividend = 580
|
||||
divisor = 34
|
||||
|
||||
i = 1
|
||||
table(i, 1) = 1
|
||||
table(i, 2) = divisor
|
||||
|
||||
WHILE table(i, 2) < dividend
|
||||
i = i + 1
|
||||
table(i, 1) = table(i - 1, 1) * 2
|
||||
table(i, 2) = table(i - 1, 2) * 2
|
||||
WEND
|
||||
i = i - 1
|
||||
answer = table(i, 1)
|
||||
accumulator = table(i, 2)
|
||||
|
||||
WHILE i > 1
|
||||
i = i - 1
|
||||
IF table(i, 2) + accumulator <= dividend THEN
|
||||
answer = answer + table(i, 1)
|
||||
accumulator = accumulator + table(i, 2)
|
||||
END IF
|
||||
WEND
|
||||
|
||||
PRINT STR$(dividend); " divided by "; STR$(divisor); " using Egytian division";
|
||||
PRINT " returns "; STR$(answer); " mod(ulus) "; STR$(dividend - accumulator)
|
||||
Loading…
Add table
Add a link
Reference in a new issue