Count in octal: Difference between revisions

 
(189 intermediate revisions by 94 users not shown)
Line 1:
{{task|Basic language learning}}
[[Category:Radices]]
[[Category:Iteration]]
 
;Task:
Produce a sequential count in octal,   starting at zero,   and using an increment of a one for each consecutive number.
 
Each number should appear on a single line,   and the program should count until terminated,   or until the maximum value of the numeric type in use is reached.
 
The task is to produce a sequential count in octal, starting at zero, and using an increment of a one for each consecutive number. Each number should appear on a single line, and the program should count until terminated, or until the maximum value of the numeric type in use is reached.
 
;Related task:
* [[Integer sequence]] is a similar task without the use of octal numbers.
*   [[Integer sequence]]   is a similar task without the use of octal numbers.
<br><br>
 
=={{header|0815}}==
<langsyntaxhighlight lang="0815">}:l:> Start loop, enqueue Z (initially 0).
}:o: Treat the queue as a stack and
<:8:= accumulate the octal digits
Line 22 ⟶ 30:
<:a:~$ Output a newline.
<:1:x{+ Dequeue the current number and increment it.
^:l:</langsyntaxhighlight>
 
=={{header|360 Assembly}}==
The program uses one ASSIST macro (XPRNT) to keep the code as short as possible.
<syntaxhighlight lang="360asm">* Octal 04/07/2016
OCTAL CSECT
USING OCTAL,R13 base register
B 72(R15) skip savearea
DC 17F'0' savearea
STM R14,R12,12(R13) prolog
ST R13,4(R15) "
ST R15,8(R13) "
LR R13,R15 "
LA R6,0 i=0
LOOPI LR R2,R6 x=i
LA R9,10 j=10
LA R4,PG+23 @pg
LOOP LR R3,R2 save x
SLL R2,29 shift left 32-3
SRL R2,29 shift right 32-3
CVD R2,DW convert octal(j) to pack decimal
OI DW+7,X'0F' prepare unpack
UNPK 0(1,R4),DW packed decimal to zoned printable
LR R2,R3 restore x
SRL R2,3 shift right 3
BCTR R4,0 @pg=@pg-1
BCT R9,LOOP j=j-1
CVD R2,DW binary to pack decimal
OI DW+7,X'0F' prepare unpack
UNPK 0(1,R4),DW packed decimal to zoned printable
CVD R6,DW convert i to pack decimal
MVC ZN12,EM12 load mask
ED ZN12,DW+2 packed decimal (PL6) to char (CL12)
MVC PG(12),ZN12 output i
XPRNT PG,80 print buffer
C R6,=F'2147483647' if i>2**31-1 (integer max)
BE ELOOPI then exit loop on i
LA R6,1(R6) i=i+1
B LOOPI loop on i
ELOOPI L R13,4(0,R13) epilog
LM R14,R12,12(R13) "
XR R15,R15 "
BR R14 exit
LTORG
PG DC CL80' ' buffer
DW DS 0D,PL8 15num
ZN12 DS CL12
EM12 DC X'40',9X'20',X'2120' mask CL12 11num
YREGS
END OCTAL</syntaxhighlight>
{{out}}
<pre style="height:20ex">
0 00000000000
1 00000000001
2 00000000002
3 00000000003
4 00000000004
5 00000000005
6 00000000006
7 00000000007
8 00000000010
9 00000000011
10 00000000012
10 00000000012
11 00000000013
...
2147483640 17777777770
2147483641 17777777771
2147483642 17777777772
2147483643 17777777773
2147483644 17777777774
2147483645 17777777775
2147483646 17777777776
2147483647 17777777777
</pre>
=={{header|6502 Assembly}}==
{{works with|https://skilldrick.github.io/easy6502/ Easy6502}}
Easy6502 can only output using a limited video memory or a hexdump. However the output is correct up to 2 octal digits.
<syntaxhighlight lang="6502asm">
define SRC_LO $00
define SRC_HI $01
 
define DEST_LO $02
define DEST_HI $03
 
define temp $04 ;temp storage used by foo
 
;some prep work since easy6502 doesn't allow you to define arbitrary bytes before runtime.
 
SET_TABLE:
TXA
STA $1000,X
INX
BNE SET_TABLE
;stores the identity table at memory address $1000-$10FF
 
CLEAR_TABLE:
LDA #0
STA $1200,X
INX
BNE CLEAR_TABLE
;fills the range $1200-$12FF with zeroes.
 
 
LDA #$10
STA SRC_HI
LDA #$00
STA SRC_LO
;store memory address $1000 in zero page
 
LDA #$12
STA DEST_HI
LDA #$00
STA DEST_LO
;store memory address $1200 in zero page
 
 
loop:
LDA (SRC_LO),y ;load accumulator from memory address $1000+y
JSR foo ;convert accumulator to octal
STA (DEST_LO),y ;store accumulator in memory address $1200+y
 
INY
CPY #$40
BCC loop
BRK
 
foo:
sta temp ;store input temporarily
asl ;bit shift, this places the top bit of the right nibble in the bottom of the left nibble.
pha ;back this value up
lda temp
and #$07 ;take the original input and remove everything except the bottom 3 bits.
sta temp ;store it for later. What used to be stored here is no longer needed.
pla ;get the pushed value back.
and #$F0 ;clear the bottom 4 bits.
ora temp ;put the bottom 3 bits of the original input back.
and #$7F ;clear bit 7.
rts</syntaxhighlight>
 
{{out}}
<pre>
1200: 00 01 02 03 04 05 06 07 10 11 12 13 14 15 16 17
1210: 20 21 22 23 24 25 26 27 30 31 32 33 34 35 36 37
1220: 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57
1230: 60 61 62 63 64 65 66 67 70 71 72 73 74 75 76 77
</pre>
 
=={{header|8080 Assembly}}==
This assumes the CP/M operating system. The count will terminate after the largest unsigned 16-bit value is reached.
<syntaxhighlight lang="text">
;-------------------------------------------------------
; useful equates
;-------------------------------------------------------
bdos equ 5 ; CP/M BDOS entry
conout equ 2 ; BDOS console output function
cr equ 13 ; ASCII carriage return
lf equ 10 ; ASCII line feed
;------------------------------------------------------
; main code begins here
;------------------------------------------------------
org 100h ; start of tpa under CP/M
lxi h,0 ; save CP/M's stack
dad sp
shld oldstk
lxi sp,stack ; set our own stack
lxi h,1 ; start counting at 1
count: call putoct
call crlf
inx h
mov a,h ; check for overflow (hl = 0)
ora l
jnz count
;
; all finished. clean up and exit.
;
lhld oldstk ; get CP/M's stack back
sphl ; restore it
ret ; exit to command prompt
;------------------------------------------------------
; Octal output routine
; entry: hl = number to output on console in octal
; this is a recursive routine and uses 6 bytes of stack
; space for each digit
;------------------------------------------------------
putoct: push b
push d
push h
mvi b,3 ; hl = hl >> 3
div2: call shlr
dcr b
jnz div2
mov a,l ; test if hl = 0
ora h
cnz putoct ; recursive call
pop h ; get unshifted hl back
push h
mov a,l ; get low byte
ani 7 ; a = a mod 8
adi '0' ; make printable
call putchr
pop h
pop d
pop b
ret
;-------------------------------------------------------
; logical right shift of 16-bit value in HL by one bit
;-------------------------------------------------------
shlr: ora a ; clear carry
mov a,h ; begin with most significant byte
rar ; bit 0 goes into carry
mov h,a ; put shifted byte back
mov a,l ; get least significant byte
rar ; bit 0 of MSB has shifted in
mov l,a
ret
;------------------------------------------------------
; output CRLF to console
;------------------------------------------------------
crlf: mvi a,cr
call putchr
mvi a,lf
call putchr
ret
;------------------------------------------------------
; Console output routine
; print character in A register to console
; preserves BC, DE, and HL
;------------------------------------------------------
putchr: push h
push d
push b
mov e,a ; character to E for CP/M
mvi c,conout
call bdos
pop b
pop d
pop h
ret
;-------------------------------------------------------
; data area
;-------------------------------------------------------
oldstk: dw 1
stack equ $+128 ; 64 level stack
;
end
</syntaxhighlight>
{{out}}
Showing the last 10 lines of the output.
<pre>
1777766
1777767
1777770
1777771
1777772
1777773
1777774
1777775
1777776
1777777
</pre>
 
=={{header|AArch64 Assembly}}==
{{works with|as|Raspberry Pi 3B version Buster 64 bits}}
<syntaxhighlight lang="aarch64 assembly">
/* ARM assembly AARCH64 Raspberry PI 3B */
/* program countOctal64.s */
/*******************************************/
/* Constantes file */
/*******************************************/
/* for this file see task include a file in language AArch64 assembly*/
.include "../includeConstantesARM64.inc"
/*********************************/
/* Initialized data */
/*********************************/
.data
sMessResult: .ascii "Count : "
sMessValeur: .fill 11, 1, ' ' // size => 11
szCarriageReturn: .asciz "\n"
/*********************************/
/* UnInitialized data */
/*********************************/
.bss
/*********************************/
/* code section */
/*********************************/
.text
.global main
main: // entry of program
mov x20,0 // loop indice
1: // begin loop
mov x0,x20
ldr x1,qAdrsMessValeur
bl conversion8 // call conversion octal
ldr x0,qAdrsMessResult
bl affichageMess // display message
add x20,x20,1
cmp x20,64
ble 1b
100: // standard end of the program
mov x0,0 // return code
mov x8,EXIT // request to exit program
svc 0 // perform the system call
qAdrsMessValeur: .quad sMessValeur
qAdrszCarriageReturn: .quad szCarriageReturn
qAdrsMessResult: .quad sMessResult
 
/******************************************************************/
/* Converting a register to octal */
/******************************************************************/
/* x0 contains value and x1 address area */
/* x0 return size of result (no zero final in area) */
/* area size => 11 bytes */
.equ LGZONECAL, 10
conversion8:
stp x1,lr,[sp,-16]! // save registers
mov x3,x1
mov x2,LGZONECAL
1: // start loop
mov x1,x0
lsr x0,x0,3 // / by 8
lsl x4,x0,3
sub x1,x1,x4 // compute remainder x1 - (x0 * 8)
add x1,x1,48 // digit
strb w1,[x3,x2] // store digit on area
cmp x0,0 // stop if quotient = 0
sub x4,x2,1
csel x2,x4,x2,ne
bne 1b // and loop
// and move digit from left of area
mov x4,0
2:
ldrb w1,[x3,x2]
strb w1,[x3,x4]
add x2,x2,1
add x4,x4,1
cmp x2,LGZONECAL
ble 2b
// and move spaces in end on area
mov x0,x4 // result length
mov x1,' ' // space
3:
strb w1,[x3,x4] // store space in area
add x4,x4,1 // next position
cmp x4,LGZONECAL
ble 3b // loop if x4 <= area size
100:
 
ldp x1,lr,[sp],16 // restaur 2 registers
ret // return to address lr x30
/********************************************************/
/* File Include fonctions */
/********************************************************/
/* for this file see task include a file in language AArch64 assembly */
.include "../includeARM64.inc"
</syntaxhighlight>
=={{header|Action!}}==
<syntaxhighlight lang="action!">PROC PrintOctal(CARD v)
CHAR ARRAY a(6)
BYTE i=[0]
 
DO
a(i)=(v&7)+'0
i==+1
v=v RSH 3
UNTIL v=0
OD
 
DO
i==-1
Put(a(i))
UNTIL i=0
OD
RETURN
 
PROC Main()
CARD i=[0]
 
DO
PrintF("decimal=%U octal=",i)
PrintOctal(i) PutE()
i==+1
UNTIL i=0
OD
RETURN</syntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Count_in_octal.png Screenshot from Atari 8-bit computer]
<pre>
decimal=0 octal=0
decimal=1 octal=1
decimal=2 octal=2
decimal=3 octal=3
decimal=4 octal=4
...
decimal=3818 octal=7352
decimal=3819 octal=7353
decimal=3820 octal=7354
decimal=3821 octal=7355
decimal=3822 octal=7356
...
</pre>
 
=={{header|Ada}}==
<langsyntaxhighlight Adalang="ada">with Ada.Text_IO;
 
procedure Octal is
Line 34 ⟶ 452:
Ada.Text_IO.New_Line;
end loop;
end Octal;</langsyntaxhighlight>
First few lines of Output:
<pre> 8#0#
Line 55 ⟶ 473:
 
=={{header|Aime}}==
<langsyntaxhighlight lang="aime">integer o;
 
o = 0;
Line 62 ⟶ 480:
o_byte('\n');
o += 1;
} while (0 < o);</langsyntaxhighlight>
 
=={{header|ALGOL 68}}==
{{works with|ALGOL 68G|Any - tested with release [http://sourceforge.net/projects/algol68/files/algol68g/algol68g-1.18.0/algol68g-1.18.0-9h.tiny.el5.centos.fc11.i386.rpm/download 1.18.0-9h.tiny].}}
{{wont work with|ELLA ALGOL 68|Any (with appropriate job cards) - tested with release [http://sourceforge.net/projects/algol68/files/algol68toc/algol68toc-1.8.8d/algol68toc-1.8-8d.fc9.i386.rpm/download 1.8-8d] - due to extensive use of '''format'''[ted] ''transput''.}}
<langsyntaxhighlight lang="algol68">#!/usr/local/bin/a68g --script #
 
INT oct width = (bits width-1) OVER 3 + 1;
Line 75 ⟶ 493:
printf(($"8r"8r n(oct width)dl$, BIN i))
OD
)</langsyntaxhighlight>
Output:
<pre>
Line 96 ⟶ 514:
8r00000000021
</pre>
 
=={{header|ALGOL-M}}==
<syntaxhighlight lang = "ALGOL">
begin
 
% display n on console in octal format %
procedure putoct(n);
integer n;
begin
integer digit, n8;
string(1) array octdig[0:7];
octdig[0] := "0"; octdig[1] := "1"; octdig[2] := "2";
octdig[3] := "3"; octdig[4] := "4"; octdig[5] := "5";
octdig[6] := "6"; octdig[7] := "7";
n8 := n / 8;
if n8 <> 0 then putoct(n8); % recursive call %
digit := n - (n / 8) * 8; % n mod 8 %
writeon(octdig[digit]);
end;
 
integer i, maxint;
i := 1;
maxint := 16383;
 
comment
Excercise the procedure by counting up in octal as
far as possible. In doing so, we have to take some
care, because integer variables are set to 1 on
overflow, and if that happens, the loop will simply
start over, and the program will run forever;
 
while i < maxint do % we need to stop one shy %
begin
write("");
putoct(i);
i := i + 1;
end;
 
% display the final value %
write("");
putoct(maxint);
 
end
</syntaxhighlight>
{{out}}
First and last 10 lines of output
<pre>
1
2
3
4
5
6
7
10
11
12
...
37766
37767
37770
37771
37772
37773
37774
37775
37776
37777
</pre>
 
=={{header|ALGOL W}}==
Algol W has built-in hexadecimal and decimal output, this implements octal output.
<syntaxhighlight lang="algolw">begin
string(12) r;
string(8) octDigits;
integer number;
octDigits := "01234567";
number := -1;
while number < MAXINTEGER do begin
integer v, cPos;
number := number + 1;
v := number;
% build a string of octal digits in r, representing number %
% Algol W uses 32 bit integers, so r should be big enough %
% the most significant digit is on the right %
cPos := 0;
while begin
r( cPos // 1 ) := octDigits( v rem 8 // 1 );
v := v div 8;
( v > 0 )
end do begin
cPos := cPos + 1
end while_v_gt_0;
% show most significant digit on a newline %
write( r( cPos // 1 ) );
% continue the line with the remaining digits (if any) %
for c := cPos - 1 step -1 until 0 do writeon( r( c // 1 ) )
end while_r_lt_MAXINTEGER
end.</syntaxhighlight>
{{out}}
<pre>
0
1
2
3
4
5
6
7
10
11
12
...
</pre>
 
=={{header|Amazing Hopper}}==
<syntaxhighlight lang="c">
#include <basico.h>
 
algoritmo
x=0, tope=11
decimales '0'
iterar grupo ( ++x,#( x< tope ),\
x,":",justificar derecha ( 5, x ---mostrar como octal--- ),\
NL, imprimir, cuando( #(x==10)){ \
"...\n...\n",x=4294967284, tope=4294967295} )
terminar
</syntaxhighlight>
{{out}}
<pre>
0: 0
1: 1
2: 2
3: 3
4: 4
5: 5
6: 6
7: 7
8: 10
9: 11
10: 12
...
...
4294967285: 37777777765
4294967286: 37777777766
4294967287: 37777777767
4294967288: 37777777770
4294967289: 37777777771
4294967290: 37777777772
4294967291: 37777777773
4294967292: 37777777774
4294967293: 37777777775
4294967294: 37777777776
 
</pre>
 
=={{header|APL}}==
Works with [[Dyalog APL]]. 100,000 is just an arbitrarily large number I chose.
<syntaxhighlight lang="apl">10⊥¨8∘⊥⍣¯1¨⍳100000</syntaxhighlight>
 
=={{header|ARM Assembly}}==
{{works with|as|Raspberry Pi}}
<syntaxhighlight lang="arm assembly">
/* ARM assembly Raspberry PI */
/* program countoctal.s */
/************************************/
/* Constantes */
/************************************/
.equ STDOUT, 1 @ Linux output console
.equ EXIT, 1 @ Linux syscall
.equ WRITE, 4 @ Linux syscall
 
/*********************************/
/* Initialized data */
/*********************************/
.data
sMessResult: .ascii "Count : "
sMessValeur: .fill 11, 1, ' ' @ size => 11
szCarriageReturn: .asciz "\n"
 
 
/*********************************/
/* UnInitialized data */
/*********************************/
.bss
/*********************************/
/* code section */
/*********************************/
.text
.global main
main: @ entry of program
mov r4,#0 @ loop indice
1: @ begin loop
mov r0,r4
ldr r1,iAdrsMessValeur
bl conversion8 @ call conversion octal
ldr r0,iAdrsMessResult
bl affichageMess @ display message
add r4,#1
cmp r4,#64
ble 1b
 
 
100: @ standard end of the program
mov r0, #0 @ return code
mov r7, #EXIT @ request to exit program
svc #0 @ perform the system call
iAdrsMessValeur: .int sMessValeur
iAdrszCarriageReturn: .int szCarriageReturn
iAdrsMessResult: .int sMessResult
 
/******************************************************************/
/* display text with size calculation */
/******************************************************************/
/* r0 contains the address of the message */
affichageMess:
push {r0,r1,r2,r7,lr} @ save registres
mov r2,#0 @ counter length
1: @ loop length calculation
ldrb r1,[r0,r2] @ read octet start position + index
cmp r1,#0 @ if 0 its over
addne r2,r2,#1 @ else add 1 in the length
bne 1b @ and loop
@ so here r2 contains the length of the message
mov r1,r0 @ address message in r1
mov r0,#STDOUT @ code to write to the standard output Linux
mov r7, #WRITE @ code call system "write"
svc #0 @ call systeme
pop {r0,r1,r2,r7,lr} @ restaur des 2 registres */
bx lr @ return
/******************************************************************/
/* Converting a register to octal */
/******************************************************************/
/* r0 contains value and r1 address area */
/* r0 return size of result (no zero final in area) */
/* area size => 11 bytes */
.equ LGZONECAL, 10
conversion8:
push {r1-r4,lr} @ save registers
mov r3,r1
mov r2,#LGZONECAL
1: @ start loop
mov r1,r0
lsr r0,#3 @ / by 8
sub r1,r0,lsl #3 @ compute remainder r1 - (r0 * 8)
add r1,#48 @ digit
strb r1,[r3,r2] @ store digit on area
cmp r0,#0 @ stop if quotient = 0
subne r2,#1 @ else previous position
bne 1b @ and loop
@ and move digit from left of area
mov r4,#0
2:
ldrb r1,[r3,r2]
strb r1,[r3,r4]
add r2,#1
add r4,#1
cmp r2,#LGZONECAL
ble 2b
@ and move spaces in end on area
mov r0,r4 @ result length
mov r1,#' ' @ space
3:
strb r1,[r3,r4] @ store space in area
add r4,#1 @ next position
cmp r4,#LGZONECAL
ble 3b @ loop if r4 <= area size
100:
pop {r1-r4,lr} @ restaur registres
bx lr @return
</syntaxhighlight>
 
=={{header|Arturo}}==
 
<syntaxhighlight lang="rebol">loop 1..40 'i ->
print ["number in base 10:" pad to :string i 2
"number in octal:" pad as.octal i 2]</syntaxhighlight>
 
{{out}}
 
<pre>number in base 10: 1 number in octal: 1
number in base 10: 2 number in octal: 2
number in base 10: 3 number in octal: 3
number in base 10: 4 number in octal: 4
number in base 10: 5 number in octal: 5
number in base 10: 6 number in octal: 6
number in base 10: 7 number in octal: 7
number in base 10: 8 number in octal: 10
number in base 10: 9 number in octal: 11
number in base 10: 10 number in octal: 12
number in base 10: 11 number in octal: 13
number in base 10: 12 number in octal: 14
number in base 10: 13 number in octal: 15
number in base 10: 14 number in octal: 16
number in base 10: 15 number in octal: 17
number in base 10: 16 number in octal: 20
number in base 10: 17 number in octal: 21
number in base 10: 18 number in octal: 22
number in base 10: 19 number in octal: 23
number in base 10: 20 number in octal: 24
number in base 10: 21 number in octal: 25
number in base 10: 22 number in octal: 26
number in base 10: 23 number in octal: 27
number in base 10: 24 number in octal: 30
number in base 10: 25 number in octal: 31
number in base 10: 26 number in octal: 32
number in base 10: 27 number in octal: 33
number in base 10: 28 number in octal: 34
number in base 10: 29 number in octal: 35
number in base 10: 30 number in octal: 36
number in base 10: 31 number in octal: 37
number in base 10: 32 number in octal: 40
number in base 10: 33 number in octal: 41
number in base 10: 34 number in octal: 42
number in base 10: 35 number in octal: 43
number in base 10: 36 number in octal: 44
number in base 10: 37 number in octal: 45
number in base 10: 38 number in octal: 46
number in base 10: 39 number in octal: 47
number in base 10: 40 number in octal: 50</pre>
 
=={{header|AutoHotkey}}==
<langsyntaxhighlight AHKlang="ahk">DllCall("AllocConsole")
Octal(int){
While int
Line 108 ⟶ 851:
FileAppend, % Octal(A_Index) "`n", CONOUT$
Sleep 200
}</langsyntaxhighlight>
 
=={{header|AWK}}==
The awk extraction and reporting language uses the underlying C library to provide support for the printf command. This enables us to use that function to output the counter value as octal:
 
<langsyntaxhighlight lang="awk">BEGIN {
for (l = 0; l <= 2147483647; l++) {
printf("%o\n", l);
}
}</langsyntaxhighlight>
 
=={{header|BASIC}}==
Line 124 ⟶ 868:
{{works with|QBasic}}
 
<langsyntaxhighlight lang="qbasic">DIM n AS LONG
FOR n = 0 TO &h7FFFFFFF
PRINT OCT$(n)
NEXT</langsyntaxhighlight>
 
However, many do not. For those BASICs, we need to write our own function.
 
<syntaxhighlight lang="qbasic">WHILE ("" = INKEY$)
{{works with|Chipmunk Basic}}
 
<lang qbasic>WHILE ("" = INKEY$)
PRINT Octal$(n)
n = n + 1
Line 147 ⟶ 889:
WEND
Octal$ = outp$
END FUNCTION</langsyntaxhighlight>
 
See also: [[#BBC BASIC|BBC BASIC]], [[#Liberty BASIC|Liberty BASIC]], [[#PureBasic|PureBasic]], [[#Run BASIC|Run BASIC]]
 
==={{header|Applesoft BASIC}}===
<syntaxhighlight lang="applesoftbasic">10 N$ = "0"
 
100 O$ = N$
110 PRINT O$
120 N$ = ""
130 C = 1
140 FOR I = LEN(O$) TO 1 STEP -1
150 N = VAL(MID$(O$, I, 1)) + C
160 C = N >= 8
170 N$ = STR$(N - C * 8) + N$
180 NEXT I
190 IF C THEN N$ = "1" + N$
200 GOTO 100</syntaxhighlight>
 
==={{header|BASIC256}}===
<syntaxhighlight lang="basic256">
valor = 0
do
print ToOctal(valor)
valor += 1
until valor = 0
end
</syntaxhighlight>
 
=== {{header|Chipmunk Basic}} ===
<syntaxhighlight lang="basic">
10 rem Count in ocatal
20 while ("" = inkey$ )
30 print octal$(n)
40 n = n+1
50 wend
60 end
200 function octal$(what)
210 outp$ = ""
220 w = what
230 while abs(w) > 0
240 o = w and 7
250 w = int(w/8)
260 outp$ = str$(o)+outp$
270 wend
280 octal$ = outp$
290 end function
</syntaxhighlight>
 
==={{header|Commodore BASIC}}===
 
This example calculates the octal equivalent of the number and returns the octal equivalent in the form of a string.
 
Eventually, the number will reach 1,000,000,000 (one billion decimal) at which point the computer will express the value of <code>n</code> in exponential format, i.e. <code>1e+09</code> and will thus loose precision and stop counting.
 
Commodore BASIC has a little quirk where numeric values converted to a string also include a leading space for the possible negative sign; this is why the <code>STR$</code> function is wrapped in a <code>RIGHT$</code> function.
 
<syntaxhighlight lang="gwbasic">10 n=0
20 gosub 70
30 print oc$
40 n=n+1
50 get a$:if a$<>"q" then goto 20
60 end
70 oc$="":t=n
80 q=int(t/8)
90 r=t-(q*8)
100 oc$=left$(str$(n),1)+right$(str$(r),1)+oc$
110 if q<>0 then t=q:goto 80
120 return</syntaxhighlight>
 
{{output}}
<pre style="font-family: C64 Pro Mono, monospace;">
0
1
2
3
4
5
6
7
10
11
12
13
14
15
17
20
21
22
23
 
User stopped count.
 
ready.
&#9608;
</pre>
 
 
==={{header|Sinclair ZX81 BASIC}}===
The octal number is stored and manipulated as a string, meaning that even with only 1k of RAM the program shouldn't stop until the number gets to a couple of hundred digits long. I have <i>not</i> left it running long enough to find out exactly when it does run out of memory. The <code>SCROLL</code> statement is necessary: the ZX81 halts when the screen is full unless it is positively told to scroll instead.
<syntaxhighlight lang="basic"> 10 LET N$="0"
20 SCROLL
30 PRINT N$
40 LET L=LEN N$
50 LET N=VAL N$(L)+1
60 IF N=8 THEN GOTO 90
70 LET N$(L)=STR$ N
80 GOTO 20
90 LET N$(L)="0"
100 IF L=1 THEN GOTO 130
110 LET L=L-1
120 GOTO 50
130 LET N$="1"+N$
140 GOTO 20</syntaxhighlight>
==={{header|uBasic/4tH}}===
This routine allows for any base (up to 36) and also caters for negative numbers.
<syntaxhighlight lang="text">x = 1
 
Do
Print Show(FUNC(_FNtobase(x, 8)))
While Set (x, x+1)
Loop
 
End
_FNtobase
Param (2) ' convert A@ to string in base B@
Local (2) ' digit C@ and string D@
' initialize, save sign
d@ := "" : Push a@ < 0 : a@ = Abs(a@)
Do
c@ = a@ % b@ : a@ = a@ / b@ ' extract digit and append
d@ = Join (Char (Ord("0") + c@ + (7 * (c@ > 9))), d@)
While a@ > 0 ' something left to convert?
Loop
If Pop() Then d@ = Join ("-", d@) ' apply sign if required
Return (d@)
</syntaxhighlight>
 
=={{header|Batch File}}==
<syntaxhighlight lang="dos">
@echo off
:: {CTRL + C} to exit the batch file
 
:: Send incrementing decimal values to the :to_Oct function
set loop=0
:loop1
call:to_Oct %loop%
set /a loop+=1
goto loop1
 
:: Convert the decimal values parsed [%1] to octal and output them on a new line
:to_Oct
set todivide=%1
set "fulloct="
 
:loop2
set tomod=%todivide%
set /a appendmod=%tomod% %% 8
set fulloct=%appendmod%%fulloct%
if %todivide% lss 8 (
echo %fulloct%
exit /b
)
set /a todivide/=8
goto loop2
</syntaxhighlight>
{{out}}
<pre>
0
1
2
3
4
5
6
7
10
...
</pre>
 
=={{header|BBC BASIC}}==
Terminate by pressing ESCape.
<langsyntaxhighlight lang="bbcbasic"> N% = 0
REPEAT
PRINT FN_tobase(N%, 8, 0)
Line 171 ⟶ 1,093:
UNTIL (N%=FALSE OR N%=TRUE) AND M%<=0
=A$
</syntaxhighlight>
</lang>
 
=={{header|bc}}==
<langsyntaxhighlight lang="bc">obase = 8 /* Output base is octal. */
for (num = 0; 1; num++) num /* Loop forever, printing counter. */</langsyntaxhighlight>
 
The loop never stops at a maximum value, because bc uses [[arbitrary-precision integers (included)|arbitrary-precision integers]].
 
=={{header|BCPL}}==
This will count up from 0 until the limit of the machine word.
<syntaxhighlight lang="bcpl">get "libhdr"
 
let start() be
$( let x = 0
$( writeo(x)
wrch('*N')
x := x + 1
$) repeatuntil x = 0
$)</syntaxhighlight>
 
=={{header|Befunge}}==
This is almost identical to the [[Binary digits#Befunge|Binary digits]] sample, except for the change of base and the source coming from a loop rather than a single input.
<syntaxhighlight lang="befunge">:0\55+\:8%68>*#<+#8\#68#%/#8:_$>:#,_$1+:0`!#@_</syntaxhighlight>
 
=={{header|BQN}}==
<code>_while_</code> and <code>Oct</code> are snippets from [https://mlochbaum.github.io/bqncrate/ BQNcrate]. A more array-oriented approach is <code>⥊↕n⥊8</code>, which produces all <code>n</code>-digit octal numbers instead of counting.
 
<syntaxhighlight lang="bqn">_while_←{𝔽⍟𝔾∘𝔽_𝕣_𝔾∘𝔽⍟𝔾𝕩}
Oct←8{⌽𝕗|⌊∘÷⟜𝕗⍟(↕1+·⌊𝕗⋆⁼1⌈⊢)}
{•Show Oct 𝕩, 𝕩+1} _while_ 1 0 </syntaxhighlight>
 
=={{header|Bracmat}}==
Stops when the user presses Ctrl-C or when the stack overflows. The solution is not elegant, and so is octal counting.
<langsyntaxhighlight lang="bracmat">
( oct
=
Line 190 ⟶ 1,135:
& -1:?n
& whl'(1+!n:?n&out$(!n oct$!n));
</syntaxhighlight>
</lang>
 
=={{header|Brainf***}}==
 
<langsyntaxhighlight lang="bf">+[ Start with n=1 to kick off the loop
[>>++++++++<< Set up {n 0 8} for divmod magic
[->+>- Then
Line 210 ⟶ 1,155:
<[[-]<] Zero the tape for the next iteration
++++++++++. Print a newline
[-]<+] Zero it then increment n and go again</langsyntaxhighlight>
 
=={{header|C}}==
<langsyntaxhighlight Clang="c">#include <stdio.h>
 
int main()
Line 220 ⟶ 1,165:
do { printf("%o\n", i++); } while(i);
return 0;
}</langsyntaxhighlight>
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">using System;
 
class Program
Line 234 ⟶ 1,180:
} while (++number > 0);
}
}</langsyntaxhighlight>
 
=={{header|C++}}==
This prevents an infinite loop by counting until the counter overflows and produces a 0 again. This could also be done with a for or while loop, but you'd have to print 0 (or the last number) outside the loop.
 
<langsyntaxhighlight lang="cpp">#include <iostream>
 
int main()
Line 249 ⟶ 1,196:
} while(i != 0);
return 0;
}</langsyntaxhighlight>
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="clojure">(doseq [i (range)] (println (format "%o" i)))</langsyntaxhighlight>
 
=={{header|COBOL}}==
{{trans|Delphi}}
{{works with|GNU Cobol|2.0}}
<syntaxhighlight lang="cobol"> >>SOURCE FREE
IDENTIFICATION DIVISION.
PROGRAM-ID. count-in-octal.
 
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
REPOSITORY.
FUNCTION dec-to-oct
.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 i PIC 9(18).
 
PROCEDURE DIVISION.
PERFORM VARYING i FROM 1 BY 1 UNTIL i = 0
DISPLAY FUNCTION dec-to-oct(i)
END-PERFORM
.
END PROGRAM count-in-octal.
 
 
IDENTIFICATION DIVISION.
FUNCTION-ID. dec-to-oct.
 
DATA DIVISION.
LOCAL-STORAGE SECTION.
01 rem PIC 9.
 
01 dec PIC 9(18).
 
LINKAGE SECTION.
01 dec-arg PIC 9(18).
 
01 oct PIC 9(18).
 
PROCEDURE DIVISION USING dec-arg RETURNING oct.
MOVE dec-arg TO dec *> Copy is made to avoid modifying reference arg.
PERFORM WITH TEST AFTER UNTIL dec = 0
MOVE FUNCTION REM(dec, 8) TO rem
STRING rem, oct DELIMITED BY SPACES INTO oct
DIVIDE 8 INTO dec
END-PERFORM
.
END FUNCTION dec-to-oct.</syntaxhighlight>
 
=={{header|CoffeeScript}}==
<langsyntaxhighlight lang="coffeescript">
n = 0
 
Line 261 ⟶ 1,256:
console.log n.toString(8)
n += 1
</syntaxhighlight>
</lang>
 
=={{header|Common Lisp}}==
<langsyntaxhighlight lang="lisp">(loop for i from 0 do (format t "~o~%" i))</langsyntaxhighlight>
 
=={{header|Component Pascal}}==
BlackBox Component Builder
<langsyntaxhighlight lang="oberon2">
MODULE CountOctal;
IMPORT StdLog,Strings;
Line 283 ⟶ 1,279:
END CountOctal.
 
</syntaxhighlight>
</lang>
Execute: ^Q CountOctal.Do<br/>
Output:
Line 306 ⟶ 1,302:
21%8
22%8
</pre>
 
=={{header|Cowgol}}==
<syntaxhighlight lang="cowgol">include "cowgol.coh";
 
typedef N is uint16;
 
sub print_octal(n: N) is
var buf: uint8[12];
var p := &buf[11];
[p] := 0;
loop
p := @prev p;
[p] := '0' + (n as uint8 & 7);
n := n >> 3;
if n == 0 then break; end if;
end loop;
print(p);
end sub;
 
var n: N := 0;
loop
print_octal(n);
print_nl();
n := n + 1;
if n == 0 then break; end if;
end loop;</syntaxhighlight>
 
=={{header|Crystal}}==
<syntaxhighlight lang="ruby"># version 0.21.1
# using unsigned 8 bit integer, range 0 to 255
(0_u8..255_u8).each { |i| puts i.to_s(8) }</syntaxhighlight>
 
{{out}}
<pre>
0
1
2
3
4
5
6
7
10
11
12
...
374
375
376
377
</pre>
 
=={{header|D}}==
<syntaxhighlight lang="d">void main() {
<lang d>import std.stdio;
import std.stdio;
 
void main() {
ubyte i;
do writefln("%o", i++);
while(i);
}</langsyntaxhighlight>
 
=={{header|Dc}}==
=== Named Macro ===
A simple infinite loop and octal output will do.
<syntaxhighlight lang Dc="dc">8o0[p1+lpx]dspx</langsyntaxhighlight>
 
=== Anonymous Macro ===
Needs <code>r</code> (swap TOS and NOS):
<syntaxhighlight lang="dc">8 o 0 [ r p 1 + r dx ] dx</syntaxhighlight>
Pushing/poping TOS to a named stack can be used instead of swaping:
<syntaxhighlight lang="dc">8 o 0 [ S@ p 1 + L@ dx ] dx</syntaxhighlight>
 
=={{header|DCL}}==
<syntaxhighlight lang="dcl">$ i = 0
$ loop:
$ write sys$output f$fao( "!OL", i )
$ i = i + 1
$ goto loop</syntaxhighlight>
{{out}}
<pre>00000000000
00000000001
00000000002
...
17777777777
20000000000
20000000001
...
37777777777
00000000000
00000000001
...</pre>
 
=={{header|Delphi}}==
<langsyntaxhighlight Delphilang="delphi">program CountingInOctal;
 
{$APPTYPE CONSOLE}
Line 345 ⟶ 1,420:
for i := 0 to 20 do
WriteLn(DecToOct(i));
end.</langsyntaxhighlight>
 
=={{header|EasyLang}}==
<syntaxhighlight lang="easylang">
func$ oct v .
while v > 0
r$ = v mod 8 & r$
v = v div 8
.
if r$ = ""
r$ = 0
.
return r$
.
for i = 0 to 10
print oct i
.
print "."
print "."
max = pow 2 53
i = max - 10
repeat
print oct i
until i = max
i += 1
.
</syntaxhighlight>
 
=={{header|EDSAC order code}}==
Uses 17-bit integers, maximum 2^16 - 1 (177777 octal). It would take the original EDSAC 18 or 19 hours to exhaust these, so there is not much point in extending to 35-bit integers.
<syntaxhighlight lang="edsac">
[Count in octal, for Rosetta Code.
EDSAC program, Initial Orders 2.]
 
[Subroutine to print 17-bit non-negative integer in octal,
with suppression of leading zeros.
Input: 0F = number (not preserved)
Workspace: 0D, 4F, 5F]
T64K GK [load at location 64]
A3F T28@ [plant return link as usual]
T4D [clear whole of 4D including sandwich bit]
A2F [load 0...010 binary (permanently in 2F)]
T4F [(1) marker bit (2) flag to test for leading 0]
AF [load number]
R2F [shift 3 right]
A4D [add marker bit]
TD [store number and marker in 0D]
H29@ [mask to isolate 3-bit octal digit]
[Loop to print digits]
[10] T5F [clear acc]
C1F [top 5 bits of acc = octal digit]
U5F [to 5F for printing]
S4F [subtract flag to test for leading 0]
G18@ [skip printing if so]
O5F [print digit]
T5F [clear acc]
T4F [flag = 0, so future 0's are not skipped]
[18] T5F [clear acc]
AD [load number + marker bit, as shifted]
L2F [shift left 3 more]
TD [store back]
AF [has marker reached sign bit yet?]
E10@ [loop back if not]
[Last digit separately, in case input = 0]
T5F [clear acc]
C1F T5F O5F
[28] ZF [(planted) jump back to caller]
[29] UF [mask, 001110...0 binary]
 
[Main routine]
T96K GK [load at location 96]
[Constants]
[0] PD [1]
[1] #F [set figures mode]
[2] @F [carriage return]
[3] &F [line feed]
[4] K4096F [null char]
[Variable]
[5] PF [number to be printed]
[Enter with acc = 0]
[6] O1@ [set teleprinter to figures]
[7] U5@ [update number, initially 0]
TF [also to 0F for printing]
[9] A9@ G64F [call print soubroutine]
O2@ O3@ [print CR, LF]
A5@ A@ [load number, add 1]
E7@ [loop until number overflows and becomes negative]
O4@ [done; print null to flush teleprinter buffer]
ZF [halt the machine]
E6Z [define entry point]
PF [acc = 0 on entry]
[end]
</syntaxhighlight>
{{out}}
<pre>
0
1
2
3
4
5
6
7
10
[...]
177775
177776
177777
</pre>
 
=={{header|Elixir}}==
<syntaxhighlight lang="elixir">Stream.iterate(0,&(&1+1)) |> Enum.each(&IO.puts Integer.to_string(&1,8))</syntaxhighlight>
or
<syntaxhighlight lang="elixir">Stream.unfold(0, fn n ->
IO.puts Integer.to_string(n,8)
{n,n+1}
end) |> Stream.run</syntaxhighlight>
or
<syntaxhighlight lang="elixir">f = fn ff,i -> :io.fwrite "~.8b~n", [i]; ff.(ff, i+1) end
f.(f, 0)</syntaxhighlight>
 
=={{header|Emacs Lisp}}==
Displays in the message area interactively, or to standard output under <code>-batch</code>.
 
<langsyntaxhighlight lang="lisp">(dotimes (i most-positive-fixnum) ;; starting from 0
(message "%o" i))</langsyntaxhighlight>
 
=={{header|Erlang}}==
The fun is copied from [[Integer sequence#Erlang]]. I changed the display format.
<syntaxhighlight lang="erlang">
<lang Erlang>
F = fun(FF, I) -> io:fwrite("~.8B~n", [I]), FF(FF, I + 1) end.
</syntaxhighlight>
</lang>
Use like this:
<pre>
Line 364 ⟶ 1,558:
 
=={{header|Euphoria}}==
<langsyntaxhighlight lang="euphoria">integer i
i = 0
while 1 do
printf(1,"%o\n",i)
i += 1
end while</langsyntaxhighlight>
 
Output:
Line 384 ⟶ 1,578:
6337
</pre>
 
=={{header|F Sharp|F#}}==
<syntaxhighlight lang="fsharp">let rec countInOctal num : unit =
printfn "%o" num
countInOctal (num + 1)
 
countInOctal 1</syntaxhighlight>
 
=={{header|Factor}}==
<syntaxhighlight lang="factor">USING: kernel math prettyprint ;
0 [ dup .o 1 + t ] loop</syntaxhighlight>
 
=={{header|Forth}}==
Using INTS from [[Integer sequence#Forth]]
<langsyntaxhighlight lang="forth">: octal ( -- ) 8 base ! ; \ where unavailable
 
octal ints</langsyntaxhighlight>
 
=={{header|Fortran}}==
{{works with|Fortran|95 and later}}
<langsyntaxhighlight lang="fortran">program Octal
implicit none
Line 405 ⟶ 1,610:
n = n + 1
end do
end program</langsyntaxhighlight>
 
=={{header|FreeBASIC}}==
<syntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Dim ub As UByte = 0 ' only has a range of 0 to 255
Do
Print Oct(ub, 3)
ub += 1
Loop Until ub = 0 ' wraps around to 0 when reaches 256
Print
Print "Press any key to quit"
Sleep</syntaxhighlight>
 
=={{header|Frink}}==
<syntaxhighlight lang="frink">i = 0
while true
{
println[i -> octal]
i = i + 1
}</syntaxhighlight>
 
=={{header|Futhark}}==
 
Futhark cannot print. Instead we produce an array of integers that
look like octal numbers when printed in decimal.
 
<syntaxhighlight lang="futhark">
fun octal(x: int): int =
loop ((out,mult,x) = (0,1,x)) = while x > 0 do
let digit = x % 8
let out = out + digit * mult
in (out, mult * 10, x / 8)
in out
 
fun main(n: int): [n]int =
map octal (iota n)
</syntaxhighlight>
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">window 1, @"Count in Octal"
 
defstr word
dim as short i
text ,,,,, 50
 
print @"dec",@"oct"
for i = 0 to 25
print i,oct(i)
next
 
HandleEvents</syntaxhighlight>
 
Output:
<pre>dec oct
0 00
1 01
2 02
3 03
4 04
5 05
6 06
7 07
8 10
9 11
10 12
11 13
12 14
13 15
14 16
15 17
16 20
17 21
18 22
19 23
20 24
21 25
22 26
23 27
24 30
25 31</pre>
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import (
Line 422 ⟶ 1,707:
}
}
}</langsyntaxhighlight>
Output:
<pre>
Line 442 ⟶ 1,727:
</pre>
Note that to use a different integer type, code must be changed in two places. Go has no way to query a type for its maximum value. Example:
<langsyntaxhighlight lang="go">func main() {
for i := uint16(0); ; i++ { // type specified here
fmt.Printf("%o\n", i)
Line 449 ⟶ 1,734:
}
}
}</langsyntaxhighlight>
Output:
<pre>
Line 458 ⟶ 1,743:
</pre>
Note also that if floating point types are used for the counter, loss of precision will prevent the program from from ever reaching the maximum value. If you stretch interpretation of the task wording "maximum value" to mean "maximum value of contiguous integers" then the following will work:
<langsyntaxhighlight lang="go">import "fmt"
 
func main() {
Line 474 ⟶ 1,759:
i = next
}
}</langsyntaxhighlight>
Output, with skip uncommented:
<pre>
Line 488 ⟶ 1,773:
</pre>
Big integers have no maximum value, but the Go runtime will panic when memory allocation fails. The deferred recover here allows the program to terminate silently should the program run until this happens.
<langsyntaxhighlight lang="go">import (
"big"
"fmt"
Line 501 ⟶ 1,786:
fmt.Printf("%o\n", i)
}
}</langsyntaxhighlight>
Output:
<pre>
Line 522 ⟶ 1,807:
=={{header|Groovy}}==
Size-limited solution:
<langsyntaxhighlight lang="groovy">println 'decimal octal'
for (def i = 0; i <= Integer.MAX_VALUE; i++) {
printf ('%7d %#5o\n', i, i)
}</langsyntaxhighlight>
 
Unbounded solution:
<langsyntaxhighlight lang="groovy">println 'decimal octal'
for (def i = 0g; true; i += 1g) {
printf ('%7d %#5o\n', i, i)
}</langsyntaxhighlight>
 
Output:
Line 556 ⟶ 1,841:
 
=={{header|Haskell}}==
<langsyntaxhighlight lang="haskell">import Numeric (showOct)
 
main :: IO ()
main = mapM_ (putStrLn . flip showOct "") [1..]</lang>
main =
mapM_
(putStrLn . flip showOct "")
[1 .. maxBound :: Int]</syntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
<langsyntaxhighlight lang="unicon">link convert # To get exbase10 method
 
procedure main()
limit := 8r37777777777
every write(exbase10(seq(0)\limit, 8))
end</langsyntaxhighlight>
 
=={{header|J}}==
'''Solution:'''
<syntaxhighlight lang J="j"> disp=. ([:smoutput [:,@:(echo) 1 ":"0) 8&#.^:_1inv
(1 + (>:[disp)^:_ ]00x</langsyntaxhighlight>
 
The full result is not displayable, by design. This could be considered a bug, but is an essential part of this task. Here's how it starts:
 
<syntaxhighlight lang ="j"> (>:[1 + disp)^:_ ]00x
0
1
Line 586 ⟶ 1,875:
10
11
...</langsyntaxhighlight>
 
The important part of this code is 8&#.inv which converts numbers from internal representation to a sequence of base 8 digits. (We then convert this sequence to characters - this gives us the octal values we want to display.)
 
So then we define disp as a word which displays its argument in octal and returns its argument as its result (unchanged).
 
Finally, the <code>^:_</code> clause tells J to repeat this function forever, with <code>(1 + disp)</code>adding 1 to the result each time it is displayed (or at least that clause tells J to keep repeating that operation until it gives the same value back twice in a row - which won't happen - or to stop when the machine stops - like if the power is turned off - or if J is shut down - or...).
 
We use arbitrary precision numbers, not because there's any likelihood that fixed width numbers would ever overflow, but to emphasize that this thing is going to have to be shut down by some mechanism outside the program.
 
That said... note that what we are doing here is counting using an internal representation and converting that to octal for display. If we instead wanted to add 1 to a value provided to us in octal and provide the result in octal, we might instead use <code>&gt;:</code> (add 1) and wrap it in <code>&amp;.(8&amp;#.)</code> (convert argument from octal and use inverse on result) with a list of digits representing our octal number. For example:
 
<syntaxhighlight lang="j"> >:&.(8&#.)7 6
7 7
>:&.(8&#.)7 7
1 0 0
>:&.(8&#.)1 0 0
1 0 1</syntaxhighlight>
 
=={{header|Jakt}}==
<syntaxhighlight lang="jakt">
fn main() {
for i in (0..) {
println("{:o}", i)
}
}
</syntaxhighlight>
 
=={{header|Janet}}==
<syntaxhighlight lang="janet">
(loop [i :range [0 math/int-max]]
(printf "%o" i))
</syntaxhighlight>
 
=={{header|Java}}==
<syntaxhighlight lang ="java">public class Count{
void printCount() {
for (int value = 0; value <= 20; value++) {
/* the 'o' specifier will print the octal integer */
System.out.printf("%o%n", value);
}
}
</syntaxhighlight>
<pre>
0
1
2
3
4
5
6
7
10
11
12
13
14
15
16
17
20
21
22
23
24
</pre>
<br />
An alternate implementation
<syntaxhighlight lang="java">public class Count{
public static void main(String[] args){
for(int i = 0;i >= 0;i++){
Line 595 ⟶ 1,949:
}
}
}</langsyntaxhighlight>
 
=={{header|JavaScript}}==
<langsyntaxhighlight lang="javascript">for (var n = 0; n < 1e14; n++) { // arbitrary limit that's not too big
document.writeln(n.toString(8)); // not sure what's the best way to output it in JavaScript
}</langsyntaxhighlight>
 
=={{header|Joy}}==
<syntaxhighlight lang="joy">DEFINE
digit == "01234567" of;
oct == "\n" [pop 7 >] [[8 div digit] dip cons] while swap digit swons.
 
0 [0 >=] [dup oct putchars succ] while pop.</syntaxhighlight>
 
=={{header|jq}}==
Here we use JSON strings of octal digits to represent octal numbers, and therefore there is no language-defined upper bound for the problem. We are careful therefore to select an algorithm that will continue indefinitely so long as there are sufficient physical resources. This is done by framing the problem so that we can use jq's `recurse(_)`.
<syntaxhighlight lang="jq"># generate octals as strings, beginning with "0"
def octals:
# input and output: array of octal digits in reverse order
def octal_add1:
[foreach (.[], null) as $d ({carry: 1};
if $d then ($d + .carry ) as $r
| if $r > 7
then {carry: 1, emit: ($r - 8)}
else {carry: 0, emit: $r }
end
elif (.carry == 0) then .emit = null
else .emit = .carry
end;
select(.emit).emit)];
[0] | recurse(octal_add1) | reverse | join("");
 
octals</syntaxhighlight>
To print the octal strings without quotation marks, invoke jq with the -r command-line option.
 
=={{header|Julia}}==
<syntaxhighlight lang="julia">
for i in one(Int64):typemax(Int64)
print(oct(i), " ")
sleep(0.1)
end
</syntaxhighlight>
I slowed the loop down with a <code>sleep</code> to make it possible to see the result without being swamped.
 
{{out}}
<pre>
1 2 3 4 5 6 7 10 11 12 13 14 15 16 17 20 21 22 23 24 25 26 27 30 31 32 33 34 35 36 ^C
</pre>
 
=={{header|Klingphix}}==
<syntaxhighlight lang="klingphix">include ..\Utilitys.tlhy
 
:octal "" >ps [dup 7 band tostr ps> chain >ps 8 / int] [dup abs 0 >] while ps> tonum bor ;
 
( 0 10 ) sequence @octal map pstack
 
" " input</syntaxhighlight>
{{out}}
<pre>((0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12))</pre>
 
=={{header|Kotlin}}==
<syntaxhighlight lang="scala">// version 1.1
 
// counts up to 177 octal i.e. 127 decimal
fun main(args: Array<String>) {
(0..Byte.MAX_VALUE).forEach { println("%03o".format(it)) }
}</syntaxhighlight>
 
{{out}}
First ten lines:
<pre>
000
001
002
003
004
005
006
007
010
011
</pre>
 
=={{header|LabVIEW}}==
LabVIEW contains a Number to Octal String function. The following image shows the front panel and block diagram.<br/>
[[file:Count_in_octal.png]]
 
=={{header|Lang}}==
<syntaxhighlight lang="lang">
$i = 0
while($i >= 0) {
fn.println(fn.toTextBase($i, 8))
$i += 1
}
</syntaxhighlight>
 
=={{header|Lang5}}==
<langsyntaxhighlight lang="lang5">'%4o '__number_format set
0 do dup 1 compress . "\n" . 1 + loop</langsyntaxhighlight>
 
=={{header|langur}}==
We use an arbitrary limit for this.
 
We use the :8x interpolation modifier to create a string in base 8 (may use base 2 to 36).
 
<syntaxhighlight lang="langur">val .limit = 70000
 
for .i of .limit {
writeln $"10x\.i; == 8x\.i:8x;"
}</syntaxhighlight>
 
{{out}}
<pre style="height:25ex;">
10x0 == 8x0
10x1 == 8x1
10x2 == 8x2
10x3 == 8x3
10x4 == 8x4
10x5 == 8x5
10x6 == 8x6
10x7 == 8x7
10x8 == 8x10
10x9 == 8x11
10x10 == 8x12
10x11 == 8x13
10x12 == 8x14
10x13 == 8x15
10x14 == 8x16
10x15 == 8x17
10x16 == 8x20
10x17 == 8x21
10x18 == 8x22
10x19 == 8x23
10x20 == 8x24
10x21 == 8x25
10x22 == 8x26
10x23 == 8x27
10x24 == 8x30
10x25 == 8x31
10x26 == 8x32
10x27 == 8x33
10x28 == 8x34
10x29 == 8x35
10x30 == 8x36
10x31 == 8x37
10x32 == 8x40
10x33 == 8x41
10x34 == 8x42
10x35 == 8x43
10x36 == 8x44
10x37 == 8x45
10x38 == 8x46
10x39 == 8x47
10x40 == 8x50
10x41 == 8x51
10x42 == 8x52
10x43 == 8x53
10x44 == 8x54
10x45 == 8x55
10x46 == 8x56
10x47 == 8x57
10x48 == 8x60
10x49 == 8x61
10x50 == 8x62
10x51 == 8x63
10x52 == 8x64
...
10x69982 == 8x210536
10x69983 == 8x210537
10x69984 == 8x210540
10x69985 == 8x210541
10x69986 == 8x210542
10x69987 == 8x210543
10x69988 == 8x210544
10x69989 == 8x210545
10x69990 == 8x210546
10x69991 == 8x210547
10x69992 == 8x210550
10x69993 == 8x210551
10x69994 == 8x210552
10x69995 == 8x210553
10x69996 == 8x210554
10x69997 == 8x210555
10x69998 == 8x210556
10x69999 == 8x210557
10x70000 == 8x210560</pre>
 
=={{header|LFE}}==
<langsyntaxhighlight lang="lisp">(: lists foreach
(lambda (x)
(: io format '"~p~n" (list (: erlang integer_to_list x 8))))
(: lists seq 0 2000))
</syntaxhighlight>
</lang>
 
=={{header|Liberty BASIC}}==
Terminate these ( essentially, practically) infinite loops by hitting <CTRL<BRK>
<syntaxhighlight lang="lb">
<lang lb>
'the method used here uses the base-conversion from RC Non-decimal radices/Convert
'to terminate hit <CTRL<BRK>
Line 646 ⟶ 2,174:
toBase$ =right$( " " +toBase$, 10)
end function
</syntaxhighlight>
</lang>
As suggested in LOGO, it is easy to work on a string representation too.
<syntaxhighlight lang="lb">
<lang lb>
op$ = "00000000000000000000"
L =len( op$)
Line 679 ⟶ 2,207:
 
end
</syntaxhighlight>
</lang>
Or use a recursive listing of permutations with the exception that the first digit is not 0 (unless listing single-digit numbers). For each digit-place, list numbers with 0-7 in the next digit-place.
<langsyntaxhighlight lang="lb">
i = 0
while 1
Line 698 ⟶ 2,226:
next i
end sub
</syntaxhighlight>
</lang>
 
=={{header|Logo}}==
No built-in octal-formatting, so it's probably more efficient to just manually increment a string than to increment a number and then convert the whole thing to octal every time we print. This also lets us keep counting as long as we have room for the string.
 
<langsyntaxhighlight lang="logo">to increment_octal :n
ifelse [empty? :n] [
output 1
Line 724 ⟶ 2,252:
print :oct
make "oct increment_octal :oct
]</langsyntaxhighlight>
 
=={{header|LOLCODE}}==
LOLCODE has no conception of octal numbers, but we can use string concatenation (<tt>SMOOSH</tt>) and basic arithmetic to accomplish the task.
<langsyntaxhighlight LOLCODElang="lolcode">HAI 1.3
 
HOW IZ I octal YR num
Line 746 ⟶ 2,274:
IM OUTTA YR printer
 
KTHXBYE</langsyntaxhighlight>
 
=={{header|Lua}}==
 
<langsyntaxhighlight lang="lua">for l=1,2147483647 do
print(string.format("%o",l))
end</langsyntaxhighlight>
 
=={{header|MathematicaM2000 Interpreter}}==
 
<syntaxhighlight lang="m2000 interpreter">
<lang Mathematica>x=0;
Module CountInOctal {
While[True,Print[BaseForm[x,8];x++]</lang>
class OctalDigitsCounter {
private:
dim m() as byte
public:
Last as boolean
Value {
string s1
integer i
for i=len(.m()) to 1
s1=s1+.m(i)
next
=s1
}
Set (s as OctalDigitsCounter) {
.m()=s.m()
.Last<=false
}
Operator "++" {
integer z=0, i=1, h=len(.m()), L=h+1
if valid(.last) else error "problem"
while i<L
if .m(i)>=7% then z++:.m(i)=0:i++ else L=i:.m(i)++
end while
if z=H then .last<=true
}
class:
Module OctalDigitsCounter(Digits as long) {
if Digits<1 then Error "Wrong number for Digits"
dim .m(1 to Digits)
}
}
// set digits to number of character width of console
k=OctalDigitsCounter(width)
// or set to 3 digits
Rem : k=OctalDigitsCounter(3)
// you can press Esc to stop it
escape off
refresh 100 // to synchronize the scrolling, so we always see the numbers not the empty line
while not k.last
print part $(0), k // print without new line, $(0) used for non proportional character printing
refresh // so we do a refresh here before the scrolling which do the next print statement
print
k++
if keypress(27) then exit
end while
print
escape on
print "done"
}
CountInOctal
</syntaxhighlight>
 
=={{header|M4}}==
 
<syntaxhighlight lang="m4">define(`forever',
`ifelse($#,0,``$0'',
`pushdef(`$1',$2)$4`'popdef(`$1')$0(`$1',eval($2+$3),$3,`$4')')')dnl
forever(`y',0,1, `eval(y,8)
')</syntaxhighlight>
 
=={{header|Maple}}==
<syntaxhighlight lang="maple">
octcount := proc (n)
seq(printf("%a \n", convert(i, octal)), i = 1 .. n);
end proc;
</syntaxhighlight>
 
=={{header|MACRO-10}}==
<syntaxhighlight lang="macro-10">
title OCTAL - Count in octal.
subttl PDP-10 assembly (MACRO-10 on TOPS-20). KJX 2022.
search monsym,macsym
 
comment \
If you want to see the overflow happening without waiting for
too long, change "movei b,1" to "move b,[377777,,777770]".
\
 
a=:1 ;Names for accumulators.
b=:2
c=:3
 
define crlf <tmsg <
>> ;Macro to print newline.
 
start:: reset% ;Initialize process.
movei b,1 ;B is the counter.
movei c,^d8 ;Octal output (nout%).
do.
movei a,.priou ;Use standard-output (nout%).
nout% ;Print number in B.
jrst [ tmsg <Output error.> ; NOUT can fail, print err-msg
jrst endprg ] ; and stop in that case.
crlf ;Print newline.
aos b ;Add one to B.
jfcl 10,[ tmsg <Arithmetic Overflow (AROV).> ;Handle overflow.
jrst endprg ]
loop. ;Do again.
enddo.
 
endprg: haltf% ;Halt program.
jrst start ;Allow continue-command.
 
end start
</syntaxhighlight>
 
=={{header|Mathematica}}/{{header|Wolfram Language}}==
<syntaxhighlight lang="mathematica">x=0;
While[True,Print[BaseForm[x,8];x++]</syntaxhighlight>
 
=={{header|MATLAB}} / {{header|Octave}}==
<langsyntaxhighlight Matlablang="matlab"> n = 0;
while (1)
dec2base(n,8)
n = n+1;
end; </langsyntaxhighlight>
Or use printf:
<langsyntaxhighlight Matlablang="matlab"> n = 0;
while (1)
printf('%o\n',n);
n = n+1;
end; </langsyntaxhighlight>
 
If a predefined sequence should be displayed, one can use
<langsyntaxhighlight Matlablang="matlab"> seq = 1:100;
dec2base(seq,8)</langsyntaxhighlight>
or
<langsyntaxhighlight Matlablang="matlab"> printf('%o\n',seq);</langsyntaxhighlight>
 
=={{header|Mercury}}==
<syntaxhighlight lang="text">
:- module count_in_octal.
:- interface.
Line 797 ⟶ 2,434:
io.format("%o\n", [i(N)], !IO),
count_in_octal(N + 1, !IO).
</syntaxhighlight>
</lang>
 
=={{header|min}}==
{{works with|min|0.19.3}}
min has no support for octal or base conversion (it is a minimalistic language, after all) so we need to do that ourselves.
<syntaxhighlight lang="min">(
(dup 0 ==) (pop () 0 shorten)
(((8 mod) (8 div)) cleave) 'cons linrec
reverse 'print! foreach newline
) :octal
 
0 (dup octal succ)
9.223e18 int times ; close to max int value</syntaxhighlight>
 
=={{header|MiniScript}}==
<syntaxhighlight lang="miniscript">
toOctal = function(n)
result = ""
while n != 0
octet = n % 8
n = floor(n / 8)
result = octet + result
end while
return result
end function
 
maxnum = 10 ^ 15 - 1
i = 0
while i < maxnum
i += 1
print i + " = " + toOctal(i)
end while
</syntaxhighlight>
 
=={{header|МК-61/52}}==
<syntaxhighlight lang="text">ИП0 П1 1 0 / [x] П1 Вx {x} 1
0 * 7 - x=0 21 ИП1 x#0 28 БП
02 ИП0 1 + П0 С/П БП 00 ИП0 lg
[x] 1 + 10^x П0 С/П БП 00</syntaxhighlight>
 
=={{header|Modula-2}}==
<langsyntaxhighlight lang="modula2">MODULE octal;
 
IMPORT InOut;
Line 812 ⟶ 2,487:
INC (num)
UNTIL num = 0
END octal.</langsyntaxhighlight>
 
=={{header|Nanoquery}}==
{{trans|C}}
Even though all integers are arbitrary precision, the maximum value that can be represented as octal using the format function is 2^64 - 1. Once this value is reached, the program terminates.
<syntaxhighlight lang="nanoquery">i = 0
while i < 2^64
println format("%o", i)
i += 1
end</syntaxhighlight>
 
=={{header|NetRexx}}==
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref symbols binary
 
Line 830 ⟶ 2,514:
k_ = k_.add(BigInteger.ONE)
end
</syntaxhighlight>
</lang>
 
=={{header|NewLISP}}==
<langsyntaxhighlight NewLISPlang="newlisp">; file: ocount.lsp
; url: http://rosettacode.org/wiki/Count_in_octal
; author: oofoe 2012-01-29
Line 843 ⟶ 2,527:
(for (i 0 (pow 2 32)) (println (format "%o" i)))
 
(exit)</langsyntaxhighlight>
 
Sample output:
Line 859 ⟶ 2,543:
12
...
</pre>
 
=={{header|Nim}}==
<syntaxhighlight lang="nim">import strutils
for i in 0 ..< int.high:
echo toOct(i, 16)</syntaxhighlight>
 
=={{header|Oberon-2}}==
{{works with|oo2c}}
<syntaxhighlight lang="oberon2">
MODULE CountInOctal;
IMPORT
NPCT:Tools,
Out := NPCT:Console;
VAR
i: INTEGER;
 
BEGIN
FOR i := 0 TO MAX(INTEGER) DO;
Out.String(Tools.IntToOct(i));Out.Ln
END
END CountInOctal.
</syntaxhighlight>
{{out}}
<pre>
00000000000
00000000001
00000000002
00000000003
00000000004
00000000005
00000000006
00000000007
00000000010
00000000011
00000000012
00000000013
00000000014
00000000015
00000000016
00000000017
00000000020
00000000021
...
00000077757
00000077760
00000077761
00000077762
00000077763
00000077764
00000077765
00000077766
00000077767
00000077770
00000077771
00000077772
00000077773
00000077774
00000077775
00000077776
00000077777
 
</pre>
 
=={{header|OCaml}}==
 
<langsyntaxhighlight lang="ocaml">let () =
for i = 0 to max_int do
Printf.printf "%o\n" i
done</langsyntaxhighlight>
 
{{out}}
Output:
<pre>
0
Line 891 ⟶ 2,637:
 
Manual:
<langsyntaxhighlight lang="parigp">oct(n)=n=binary(n);if(#n%3,n=concat([[0,0],[0]][#n%3],n));forstep(i=1,#n,3,print1(4*n[i]+2*n[i+1]+n[i+2]));print;
n=0;while(1,oct(n);n++)</langsyntaxhighlight>
 
Automatic:
{{works with|PARI/GP|2.4.3 and above}}
<langsyntaxhighlight lang="parigp">n=0;while(1,printf("%o\n",n);n++)</langsyntaxhighlight>
 
=={{header|Pascal}}==
See [[Count_in_octal#Delphi | Delphi]] or {{works with|Free Pascal}}
old string incrementer for Turbo Pascal transformed, same as in http://rosettacode.org/wiki/Count_in_octal#Logo, about 100x times faster than Dephi-Version, with the abilty to used preformated strings leading zeroes.
Added a Bit fiddling Version IntToOctString, nearly as fast.
<syntaxhighlight lang="pascal">program StrAdd;
{$Mode Delphi}
{$Optimization ON}
uses
sysutils;//IntToStr
 
const
maxCntOct = (SizeOf(NativeUint)*8+(3-1)) DIV 3;
 
procedure IntToOctString(i: NativeUint;var res:Ansistring);
var
p : array[0..maxCntOct] of byte;
c,cnt: LongInt;
begin
cnt := maxCntOct;
repeat
c := i AND 7;
p[cnt] := (c+Ord('0'));
dec(cnt);
i := i shr 3;
until (i = 0);
i := cnt+1;
cnt := maxCntOct-cnt;
//most time consuming with Ansistring
//call fpc_ansistr_unique
setlength(res,cnt);
move(p[i],res[1],cnt);
end;
 
procedure IncStr(var s:String;base:NativeInt);
var
le,c,dg:nativeInt;
begin
le := length(s);
IF le = 0 then
Begin
s := '1';
EXIT;
end;
 
repeat
dg := ord(s[le])-ord('0') +1;
c := ord(dg>=base);
dg := dg-(base AND (-c));
s[le] := chr(dg+ord('0'));
dec(le);
until (c = 0) or (le<=0);
 
if (c = 1) then
begin
le := length(s);
setlength(s,le+1);
move(s[1],s[2],le);
s[1] := '1';
end;
end;
 
const
MAX = 8*8*8*8*8*8*8*8*8;//8^9
var
sOct,
s : AnsiString;
i : nativeInt;
T1,T0: TDateTime;
Begin
sOct := '';
For i := 1 to 16 do
Begin
IncStr(sOct,8);
writeln(i:10,sOct:10);
end;
writeln;
 
For i := 1 to 16 do
Begin
IntToOctString(i,s);
writeln(i:10,s:10);
end;
 
sOct := '';
T0 := time;
For i := 1 to MAX do
IncStr(sOct,8);
T0 := (time-T0)*86400;
writeln(sOct);
 
T1 := time;
For i := 1 to MAX do
IntToOctString(i,s);
T1 := (time-T1)*86400;
writeln(s);
writeln;
writeln(MAX);
writeln('IncStr ',T0:8:3);
writeln('IntToOctString ',T1:8:3);
end.
</syntaxhighlight>
{{out}}
<pre> 1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 10
9 11
10 12
11 13
12 14
13 15
14 16
15 17
16 20
 
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 10
9 11
10 12
11 13
12 14
13 15
14 16
15 17
16 20
 
1000000000
1000000000
 
134217728
IncStr 0.944 secs
IntToOctString 2.218 secs</pre>
 
===A recursive approach===
<syntaxhighlight lang="pascal">
program OctalCount;
 
{$mode objfpc}{$H+}
 
var
i : integer;
 
// display n in octal on console
procedure PutOctal(n : integer);
var
digit, n3 : integer;
begin
n3 := n shr 3;
if n3 <> 0 then PutOctal(n3);
digit := n and 7;
write(digit);
end;
 
// count in octal until integer overflow
begin
i := 1;
while i > 0 do
begin
PutOctal(i);
writeln;
i := i + 1;
end;
readln;
end.
</syntaxhighlight>
{{out}}
Showing last 10 lines of output
<pre>
17777777766
17777777767
17777777770
17777777771
17777777772
17777777773
17777777774
17777777775
17777777776
17777777777
</pre>
 
=={{header|Perl}}==
Since task says "system register", I take it to mean "no larger than machine native integer limit":
<langsyntaxhighlight lang="perl">use POSIX;
printf "%o\n", $_ for (0 .. POSIX::UINT_MAX);</langsyntaxhighlight>
Otherwise:
<langsyntaxhighlight lang="perl">use bigint;
my $i = 0;
printf "%o\n", $i++ while 1</langsyntaxhighlight>
The above count in binary or decimal and convert to octal.
This actually counts in octal.
It will run forever or until the universe ends, whichever comes first.
<syntaxhighlight lang="perl">#!/usr/bin/perl
 
$_ = 0;
=={{header|Perl 6}}==
s/([^7])?(7*)$/ $1 + 1 . $2 =~ tr!7!0!r /e while print "$_\n";</syntaxhighlight>
<lang perl6>say .base(8) for ^Inf;</lang>
 
{{out}}
=={{header|Phix}}==
<pre>0</pre>
<!--<syntaxhighlight lang="phix">-->
Here we arbitrarily show as many lines of output as there are lines in the program. <tt>:-)</tt>
<span style="color: #008080;">without</span> <span style="color: #008080;">javascript_semantics</span>
<span style="color: #004080;">integer</span> <span style="color: #000000;">i</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">0</span>
<span style="color: #008080;">constant</span> <span style="color: #000000;">ESC</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">#1B</span>
<span style="color: #008080;">while</span> <span style="color: #008080;">not</span> <span style="color: #7060A8;">find</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">get_key</span><span style="color: #0000FF;">(),{</span><span style="color: #000000;">ESC</span><span style="color: #0000FF;">,</span><span style="color: #008000;">'q'</span><span style="color: #0000FF;">,</span><span style="color: #008000;">'Q'</span><span style="color: #0000FF;">})</span> <span style="color: #008080;">do</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"%o\n"</span><span style="color: #0000FF;">,</span><span style="color: #000000;">i</span><span style="color: #0000FF;">)</span>
<span style="color: #000000;">i</span> <span style="color: #0000FF;">+=</span> <span style="color: #000000;">1</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">while</span>
<!--</syntaxhighlight>-->
See [[Integer_sequence#Phix]] for something that will run in a browser, obviously use "%o" instead of "%d" to
make it display octal numbers, or more accurately in that case, mpz_get_str(i,8). <!--(phixonline)-->
 
=={{header|PHP}}==
<langsyntaxhighlight lang="php"><?php
for ($n = 0; is_int($n); $n++) {
echo decoct($n), "\n";
}
?></langsyntaxhighlight>
 
=={{header|Picat}}==
Ways to convert to octal numbers:
* <code>to_oct_string(N)</code>
* <code>to_radix_string(N,8)</code>
* <code>printf("%o\n",N)</code>
 
 
<syntaxhighlight lang="picat">go =>
gen(N),
println(to_oct_string(N)),
fail.
 
gen(I) :-
gen(0, I).
gen(I, I).
gen(I, J) :-
I2 is I + 1,
gen(I2, J).</syntaxhighlight>
 
{{out}}
<pre>0
1
2
3
4
5
6
7
10
11
...
17615737040105402212262317777777776
17615737040105402212262317777777777
17615737040105402212262320000000000
17615737040105402212262320000000001
17615737040105402212262320000000002
<Ctrl-C></pre>
 
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(for (N 0 T (inc N))
(prinl (oct N)) )</langsyntaxhighlight>
 
=={{header|Pike}}==
<syntaxhighlight lang="pike">
int i=1;
while(true)
write("0%o\n", i++);
</syntaxhighlight>
{{Out}}
<pre>
01
02
...
</pre>
 
=={{header|PL/I}}==
Version 1:
<lang PL/I>
<syntaxhighlight lang="pli">/* Do the actual counting in octal. */
count: procedure options (main);
declare v(5) fixed(1) static initial ((5)0);
Line 952 ⟶ 2,951:
end inc;
 
end count;</syntaxhighlight>
Version 2:
</lang>
<syntaxhighlight lang="pli">count: procedure options (main); /* 12 Jan. 2014 */
declare (i, j) fixed binary;
 
do i = 0 upthru 2147483647;
do j = 30 to 0 by -3;
put edit (iand(isrl(i, j), 7) ) (f(1));
end;
put skip;
end;
 
end count;</syntaxhighlight>
 
{{out}}
<pre>(End of) Output of version 1
00000001173
00000001174
00000001175
00000001176
00000001177
00000001200
00000001201
00000001202
00000001203
00000001204
00000001205
00000001206
00000001207
00000001210
00000001211
00000001212
00000001213
00000001214
00000001215
00000001216
</pre>
 
==={{header|PL/I-80}}===
If you only need to count, and aren't bothered by leading zeroes in the output, this will do the trick simply and with a minimum of fuss.
<syntaxhighlight lang="pl/i">
octal_count:
procedure options (main);
dcl i fixed;
i = 1;
do while (i ^= 0);
put skip edit (unspec(i)) (b3);
i = i + 1;
end;
 
end octal_count;
</syntaxhighlight>
{{out}}
First and last 10 numbers of output
<pre>
000001
000002
000003
000004
000005
000006
000007
000010
000011
000012
...
177766
177767
177770
177771
177772
177773
177774
177775
177776
177777
</pre>
But a general purpose function to return the octal representation of an integer value as a string (similar to the OCT$ function in many BASICs) may prove more useful.<syntaxhighlight lang="pl/i">
octal_count:
procedure options (main);
dcl i fixed;
i = 1;
do while (i ^= 0);
put skip list (octal(i));
i = i + 1;
end;
 
stop;
 
octal:
procedure (n) returns (char(6) varying);
dcl
(n, m) fixed,
s char(6) varying;
/* n is passed by reference, so make a local copy */
m = n;
s = '';
do while (m > 0);
s = ascii(mod(m,8) + rank('0')) || s;
m = m / 8;
end;
return (s);
end octal;
 
end octal_count;
</syntaxhighlight>
{{out}}
First and last 10 numbers of output
<pre>
1
2
3
4
5
6
7
10
11
12
...
77766
77767
77770
77771
77772
77773
77774
77775
77776
77777
</pre>
 
=={{header|PL/M}}==
<syntaxhighlight lang="pli">100H: /* PRINT INTEGERS IN OCTAL */
BDOS: PROCEDURE( FN, ARG ); /* CP/M BDOS SYSTEM CALL */
DECLARE FN BYTE, ARG ADDRESS;
GOTO 5;
END BDOS;
PR$CHAR: PROCEDURE( C ); DECLARE C BYTE; CALL BDOS( 2, C ); END;
PR$NL: PROCEDURE; CALL PR$CHAR( 0DH ); CALL PR$CHAR( 0AH ); END;
PR$OCTAL: PROCEDURE( N );
DECLARE N ADDRESS;
DECLARE V ADDRESS, O$STR( 7 ) BYTE, W BYTE;
V = N;
O$STR( W := 0 ) = '0' + ( V AND 7 );
DO WHILE( ( V := SHR( V, 3 ) ) > 0 );
O$STR( W := W + 1 ) = '0' + ( V AND 7 );
END;
W = W + 1;
DO WHILE( W <> 0 );
CALL PR$CHAR( O$STR( W := W - 1 ) );
END;
END PR$OCTAL;
 
DECLARE N ADDRESS;
N = 0;
CALL PR$OCTAL( N );
CALL PR$NL;
DO WHILE( ( N := N + 1 ) > 0 ); /* AFTER 65535 N WILL WRAP 'ROUND TO 0 */
CALL PR$OCTAL( N );
CALL PR$NL;
END;
EOF</syntaxhighlight>
 
=={{header|PowerShell}}==
<syntaxhighlight lang="powershell">[int64]$i = 0
While ( $True )
{
[Convert]::ToString( ++$i, 8 )
}</syntaxhighlight>
 
=={{header|Prolog}}==
Rather than just printing out a list of octal numbers, this code will generate a sequence.
octal/1 can also be used to tell if a number is a valid octal number or not.
octalize will keep producing and printing octal number, there is no limit.
 
<syntaxhighlight lang="prolog">o(O) :- member(O, [0,1,2,3,4,5,6,7]).
 
octal([O]) :- o(O).
octal([A|B]) :-
octal(O),
o(T),
append(O, [T], [A|B]),
dif(A, 0).
octalize :-
forall(
octal(X),
(maplist(write, X), nl)
).</syntaxhighlight>
 
=={{header|PureBasic}}==
<langsyntaxhighlight PureBasiclang="purebasic">Procedure.s octal(n.q)
Static Dim digits(20)
Protected i, j, result.s
Line 982 ⟶ 3,170:
CloseConsole()
EndIf
</syntaxhighlight>
</lang>
Sample output:
<pre>0
Line 1,007 ⟶ 3,195:
 
=={{header|Python}}==
===Python2===
<lang Python>import sys
<syntaxhighlight lang="python">import sys
for n in xrange(sys.maxint):
print oct(n)</langsyntaxhighlight>
===Python3===
<syntaxhighlight lang="python">
# Python3 count_in_oct.py by Xing216
import sys
for n in range(sys.maxsize):
print(oct(n))
</syntaxhighlight>
 
=={{header|QB64}}==
<syntaxhighlight lang="qb64">
Dim As Integer iNum, Icount
Dim sMax As String
 
sMax = ""
Do While Val(sMax) <= 0 Or Val(sMax) > 32767
Input "Please type a value from 1 to 32767 ", sMax
Loop
iNum = Val(sMax)
For Icount = 0 To iNum Step 1
Print Oct$(Icount)
Next
End
 
REM also QBasic example runs under QB64
</syntaxhighlight>
 
=={{header|Quackery}}==
<syntaxhighlight lang="quackery">8 base put
0 [ dup echo cr 1+ again ]</syntaxhighlight>
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">
#lang racket
(for ([i (in-naturals)])
(displayln (number->string i 8)))
</syntaxhighlight>
</lang>
(Racket has bignums, so this loop will never end.)
 
=={{header|RetroRaku}}==
(formerly Perl 6)
Integers in Retro are signed.
<syntaxhighlight lang="raku" line>say .base(8) for ^Inf;</syntaxhighlight>
 
{{out}}
<lang Retro>octal
<pre>0</pre>
17777777777 [ putn cr ] iter</lang>
Here we arbitrarily show as many lines of output as there are lines in the program. <tt>:-)</tt>
 
=={{header|REXX}}==
If this REXX program wouldn't be stopped, it would count ''forever''.
<lang rexx>/*REXX program counts in octal until the number exceeds #pgm statements.*/
 
The technique used is to convert the decimal number to binary, and separate the binary digits in groups of three, and then convert those binary groups (numbers) to decimal.
/*┌────────────────────────────────────────────────────────────────────┐
<syntaxhighlight lang="rexx">/*REXX program counts in octal until the number exceeds the number of program statements*/
│ Count all the protons (and electrons!) in the universe. │
 
│ │
/*┌────────────────────────────────────────────────────────────────────┐
│ According to Sir Author Eddington in 1938 at his Tamer Lecture at │
│ Count all the protons (and electrons!) in the universe. │
│ Trinity Collecge (Cambridge), he postulated that there are exactly │
│ │
│ According to Sir Arthur Eddington in 1938 at his Tamer Lecture at │
│ 136 ∙ 2^245 │
│ Trinity College (Cambridge), he postulated that there are exactly │
│ │
│ │
│ protons in the universe, and the same number of electrons, which │
is equal to around 1.57477e+79. 136 ∙ 2^256
│ │
[Although, a modern estimate is around 10^80.] protons in the universe, and the same number of electrons, which
│ is equal to around 1.57477e+79. │
└────────────────────────────────────────────────────────────────────┘*/
│ │
│ [Although, a modern estimate is around 10^80.] │
└────────────────────────────────────────────────────────────────────┘*/
 
numeric digits 100000 /*handle almost allany sized big numbers. */
numIn= right('number in', 20) /*used for indentation of the output. */
w= length( sourceline() ) /*used for formatting width of #snumbers.*/
 
do #=0 to 136 * (2**256) /*Sir Eddington, here we come ! */
!= x2b( d2x(#) )
_= right(!, 3 * (length(_) % 3 + 1), 0)
o=
do k=1 to length(_) by 3
o= o'0'substr(_, k, 3)
end /*k*/
 
say numIn 'base ten = ' right(#,w) numIn "octal = " right( b2x(o) + 0, w + w)
if #>sourceline() then leave /*stop if # of protons > pgm statements*/
 
if #>sourceline() then leave /*stop if #protons > program statements.*/
end /*#*/
/*stick a fork in it, we're all done. */</langsyntaxhighlight>
'''{{out|output'''}}
<pre style="height:30ex;overflow:scroll38ex">
number in base ten = 0 number in octal = 0
number in base ten = 1 number in octal = 1
Line 1,095 ⟶ 3,315:
number in base ten = 31 number in octal = 37
number in base ten = 32 number in octal = 40
number in base ten = 33 number in octal = 41
number in base ten = 34 number in octal = 42
number in base ten = 35 number in octal = 43
</pre>
 
=={{header|RubyRing}}==
<syntaxhighlight lang="ring">
From the [http://www.ruby-doc.org/core/Fixnum.html documentation]: "A Fixnum holds Integer values that can be represented in a native machine word (minus 1 bit). If any operation on a Fixnum exceeds this range, the value is automatically converted to a Bignum."
size = 30
for n = 1 to size
see octal(n) + nl
next
 
func octal m
<lang ruby>n = 0
output = ""
w = m
while fabs(w) > 0
oct = w & 7
w = floor(w / 8)
output = string(oct) + output
end
return output
</syntaxhighlight>
 
=={{header|RPL}}==
This will run an octal counter at the top of the screen from 1 to n, n being entered as an argument.
≪ OCT CLLCD
1 SWAP '''FOR''' j
j R→B 1 DISP 0.2 WAIT '''NEXT'''
CLMF
≫ 'CLOCT' STO
 
=={{header|Ruby}}==
<syntaxhighlight lang="ruby">n = 0
loop do
puts "%o" % n
Line 1,110 ⟶ 3,352:
 
# or
for n in (0..Float::INFINITY)
puts n.to_s(8)
end
Line 1,117 ⟶ 3,359:
0.upto(1/0.0) do |n|
printf "%o\n", n
end</lang>
 
# version 2.1 later
0.step do |n|
puts format("%o", n)
end</syntaxhighlight>
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang="runbasic">input "Begin number:";b
input " End number:";e
Line 1,134 ⟶ 3,381:
if base10 < 1 then exit for
next i
end function</langsyntaxhighlight>
 
=={{header|Rust}}==
<langsyntaxhighlight Rustlang="rust">fn main() {
for i in range(std::uint::min_value, 0..std::uintusize::max_value)MAX {
println(fmt!("%{:o}", i));
}
}</langsyntaxhighlight>
Please note: on x86_64 std::uint::max_value currently equals to 18446744073709551615
 
=={{header|Salmon}}==
Line 1,148 ⟶ 3,394:
Salmon has built-in unlimited-precision integer arithmetic, so these examples will all continue printing octal values indefinitely, limited only by the amount of memory available (it requires O(log(n)) bits to store an integer n, so if your computer has 1 GB of memory, it will count to a number with on the order of <math>2^{80}</math> octal digits).
 
<langsyntaxhighlight Salmonlang="salmon">iterate (i; [0...+oo])
printf("%o%\n", i);;</langsyntaxhighlight>
 
or
 
<langsyntaxhighlight Salmonlang="salmon">for (i; 0; true)
printf("%o%\n", i);;</langsyntaxhighlight>
 
or
 
<langsyntaxhighlight Salmonlang="salmon">variable i := 0;
while (true)
{
printf("%o%\n", i);
++i;
};</langsyntaxhighlight>
 
=={{header|S-BASIC}}==
Although many BASICs have a built-in OCT$ function, S-BASIC does not, so we have to supply our own
<syntaxhighlight lang="basic">
rem - return p mod q
function mod(p, q = integer) = integer
end = p - q * (p / q)
 
rem - return octal representation of n
function oct$(n = integer) = string
var s = string
s = ""
while n > 0 do
begin
s = chr(mod(n,8) + '0') + s
n = n / 8
end
end = s
 
rem - count in octal until overflow
var i = integer
i = 1
while i > 0 do
begin
print oct$(i)
i = i + 1
end
 
end
</syntaxhighlight>
{{out}}
Showing first and last 10 lines of output
<pre>
1
2
3
4
5
6
7
10
11
12
...
77766
77767
77770
77771
77772
77773
77774
77775
77776
77777
</pre>
 
=={{header|Scala}}==
<langsyntaxhighlight lang="scala">0Stream untilfrom Int.MaxValue0 foreach (i => println(i .toOctalString))</langsyntaxhighlight>
 
=={{header|Scheme}}==
<langsyntaxhighlight lang="scheme">(do ((i 0 (+ i 1))) (#f) (display (number->string i 8)) (newline))</langsyntaxhighlight>
 
=={{header|Scratch}}==
[[File:ScratchCountInOctal.png]]
 
=={{header|sed}}==
This program expects one line (consisting of a non-negative octal integer) as start value:
<syntaxhighlight lang="sed">:l
p
s/^7*$/0&/
h
y/01234567/12345670/
x
G
s/.7*\n.*\([^0]\)/\1/
bl</syntaxhighlight>
{{out}}
<pre>
$ echo 0 | sed -f count_oct.sed | head
0
1
2
3
4
5
6
7
10
11
</pre>
 
=={{header|Seed7}}==
This example uses the [http://seed7.sourceforge.net/libraries/integer.htm#%28in_integer%29radix%28in_integer%29 radix] operator to write a number in octal.
<lang seed7>$ include "seed7_05.s7i";
 
<syntaxhighlight lang="seed7">$ include "seed7_05.s7i";
const proc: main is func
Line 1,182 ⟶ 3,511:
begin
repeat
writeln(str(i, radix 8));
incr(i);
until FALSE;
end func;</langsyntaxhighlight>
 
=={{header|Sidef}}==
<syntaxhighlight lang="ruby">var i = 0;
loop { say i++.as_oct }</syntaxhighlight>
=={{header|Simula}}==
<syntaxhighlight lang="simula">
BEGIN
 
PROCEDURE OUTOCT(N); INTEGER N;
BEGIN
PROCEDURE OCT(N); INTEGER N;
BEGIN
IF N > 0 THEN BEGIN
OCT(N//8);
OUTCHAR(CHAR(RANK('0')+MOD(N,8)));
END;
END OCT;
IF N < 0 THEN BEGIN OUTCHAR('-'); OUTOCT(-N); END
ELSE IF N = 0 THEN OUTCHAR('0')
ELSE OCT(N);
END OUTOCT;
 
INTEGER I;
WHILE I < MAXINT DO BEGIN
OUTINT(I,0);
OUTTEXT(" => ");
OUTOCT(I);
OUTIMAGE;
I := I+1;
END;
END.
</syntaxhighlight>
 
=={{header|Smalltalk}}==
{{works with|Smalltalk/X}}
<syntaxhighlight lang="smalltalk">0 to:Integer infinity do:[:n |
n printOn:Stdout radix:8.
Stdout cr.
]</syntaxhighlight>
{{out}}
<pre>1
2
3
4
5
6
7
10
11
12
13
14
15
16
17
20
21
...</pre>
 
=={{header|Sparkling}}==
<syntaxhighlight lang="sparkling">for (var i = 0; true; i++) {
printf("%o\n", i);
}</syntaxhighlight>
 
=={{header|Standard ML}}==
<syntaxhighlight lang="sml">local
fun count n = (print (Int.fmt StringCvt.OCT n ^ "\n"); count (n+1))
in
val _ = count 0
end</syntaxhighlight>
 
=={{header|Swift}}==
<syntaxhighlight lang="swift">import Foundation
 
func octalSuccessor(value: String) -> String {
if value.isEmpty {
return "1"
} else {
let i = value.startIndex, j = value.endIndex.predecessor()
switch (value[j]) {
case "0": return value[i..<j] + "1"
case "1": return value[i..<j] + "2"
case "2": return value[i..<j] + "3"
case "3": return value[i..<j] + "4"
case "4": return value[i..<j] + "5"
case "5": return value[i..<j] + "6"
case "6": return value[i..<j] + "7"
case "7": return octalSuccessor(value[i..<j]) + "0"
default:
NSException(name:"InvalidDigit", reason: "InvalidOctalDigit", userInfo: nil).raise();
return ""
}
}
}
 
var n = "0"
while strtoul(n, nil, 8) < UInt.max {
println(n)
n = octalSuccessor(n)
}</syntaxhighlight>
 
{{Output}}
The first few lines. anyway:
<pre>0
1
2
3
4
5
6
7
10
11
12
13
14
15
16
17
20
21
22
23</pre>
 
=={{header|Tcl}}==
<langsyntaxhighlight lang="tcl">package require Tcl 8.5; # arbitrary precision integers; we can count until we run out of memory!
while 1 {
puts [format "%llo" [incr counter]]
}</langsyntaxhighlight>
 
=={{header|UNIX Shell}}==
We use the bc calculator to increment our octal counter:
 
<langsyntaxhighlight lang="sh">#!/bin/sh
num=0
while true; do
echo $num
num=`echo "obase=8;ibase=8;$num+1"|bc`
done</langsyntaxhighlight>
 
===Using printf ===
Increment a decimal counter and use <code>printf(1)</code> to print it in octal. Our loop stops when the counter overflows to negative.
 
<langsyntaxhighlight lang="sh">#!/bin/sh
num=0
while test 0 -le $num; do
printf '%o\n' $num
num=`expr $num + 1`
done</langsyntaxhighlight>
 
Various recent shells have a bultin <code>$(( ... ))</code> for arithmetic rather than running <code>expr</code>, in which case
Line 1,217 ⟶ 3,669:
{{works with|bash}}
{{works with|pdksh|5.2.14}}
<langsyntaxhighlight lang="sh">num=0
while test 0 -le $num; do
printf '%o\n' $num
num=$((num + 1))
done</langsyntaxhighlight>
 
=={{header|VBA}}==
[[Category:Basic language learning]]
 
[[Category:Radices]]
With i defined as an Integer, the loop will count to 77777 (32767 decimal). Error handling added to terminate nicely on integer overflow.
[[Category:Iteration]]
 
<syntaxhighlight lang="vba">
Sub CountOctal()
Dim i As Integer
i = 0
On Error GoTo OctEnd
Do
Debug.Print Oct(i)
i = i + 1
Loop
OctEnd:
Debug.Print "Integer overflow - count terminated"
End Sub
</syntaxhighlight>
 
=={{header|VBScript}}==
<syntaxhighlight lang="vb">
For i = 0 To 20
WScript.StdOut.WriteLine Oct(i)
Next
</syntaxhighlight>
 
=={{header|Vim Script}}==
<syntaxhighlight lang="vim">let counter = 0
while counter >= 0
echon printf("%o\n", counter)
let counter += 1
endwhile</syntaxhighlight>
 
=={{header|V (Vlang)}}==
<syntaxhighlight lang="v (vlang)">import math
fn main() {
for i := i8(0); ; i++ {
println("${i:o}")
if i == math.max_i8 {
break
}
}
}</syntaxhighlight>
{{out}}
<pre>
0
1
2
...
173
174
175
176
177
</pre>
 
=={{header|VTL-2}}==
Stops at 65535, the largest integer supported by VTL-2.
<syntaxhighlight lang="vtl2">1000 N=0
1010 #=2000
1020 ?=""
1030 #=N=65535*9999
1040 N=N+1
1050 #=1010
2000 R=!
2010 O=N
2020 D=1
2030 O=O/8
2040 :D)=%
2050 D=D+1
2060 #=O>1*2030
2070 E=D-1
2080 $=48+:E)
2090 E=E-1
2100 #=E>1*2080
2110 #=R</syntaxhighlight>
{{out}}
<pre>
0
1
2
3
4
5
6
7
10
11
12
...
177775
177776
177777
</pre>
 
=={{header|Whitespace}}==
Line 1,231 ⟶ 3,773:
This program prints octal numbers until the internal representation of the current integer overflows to -1; it will never do so on some interpreters.
 
<syntaxhighlight lang="whitespace">
<lang Whitespace>
 
Line 1,270 ⟶ 3,812:
 
 
</langsyntaxhighlight>
 
It was generated from the following pseudo-Assembly.
 
<langsyntaxhighlight lang="asm">push 0
; Increment indefinitely.
0:
Line 1,306 ⟶ 3,848:
3:
pop
ret</langsyntaxhighlight>
 
=={{header|Wren}}==
{{libheader|Wren-fmt}}
<syntaxhighlight lang="wren">import "./fmt" for Conv
 
var i = 0
while (true) {
System.print(Conv.oct(i))
i = i + 1
}</syntaxhighlight>
 
{{out}}
<pre>
0
1
2
3
4
5
6
7
10
11
12
13
14
15
16
17
20
21
22
23
24
^C
</pre>
 
=={{header|XPL0}}==
XPL0 doesn't have built-in routines to handle octal; instead it uses hex.
<langsyntaxhighlight XPL0lang="xpl0">include c:\cxpl\codes; \intrinsic code declarations
 
proc OctOut(N); \Output N in octal
Line 1,326 ⟶ 3,904:
I:= I+1;
until KeyHit or I=0;
]</langsyntaxhighlight>
 
Example output:
Line 1,349 ⟶ 3,927:
21
</pre>
 
=={{header|zig}}==
<syntaxhighlight lang="zig">const std = @import("std");
const fmt = std.fmt;
const warn = std.debug.warn;
 
pub fn main() void {
var i: u8 = 0;
var buf: [3]u8 = undefined;
 
while (i < 255) : (i += 1) {
_ = fmt.formatIntBuf(buf[0..], i, 8, false, 0); // buffer, value, base, uppercase, width
warn("{}\n", buf);
}
}</syntaxhighlight>
 
=={{header|Z80 Assembly}}==
The Sega Master System's screen isn't big enough to show each number on its own line and have all the numbers be visible at the same time, so this program shows 8 per line. Hardware-specific code for loading system font, setting up video display processor, printing, etc. are omitted. Z80 Assembly doesn't have built-in support for displaying octal (or any value in any base for that matter) so it has to be done with a custom routine.
 
Outputs octal values 0 through 77 (decimal 0 to 63, or hexadecimal 0x00 to 0x3F.)
 
<syntaxhighlight lang="z80"> xor a ;LD A,0
ld b,&40 ;how many numbers to print.
loop_showOctal:
push af
push af
call ShowOctal
ld a,' '
call PrintChar ;put a blank space after the value
pop af
;;;;;;;;;;;;;;;;;;;;; this code starts a new line after every 8th output.
ld a,b
and &07
dec a
call z,NewLine
;;;;;;;;;;;;;;;;;;;;;;
pop af
inc a ;next number
djnz loop_showOctal
 
jp $ ;end program
 
ShowOctal:
push bc
ld c,a
add a
push af
ld a,7
and c
ld c,a
pop af
and &F0
or c
and &7F
pop bc
jp ShowHex
 
ShowHex: ;this isn't directly below ShowOctal, it's somewhere else entirely.
;thanks to Keith of Chibiakumas for this routine!
push af
and %11110000
ifdef gbz80
swap a ;game boy can use this, but Zilog Z80 cannot.
else
rrca
rrca
rrca
rrca
endif
call PrintHexChar
pop af
and %00001111
;execution flows into the subroutine below, effectively calling it for us without having to actually do so.
PrintHexChar:
or a ;Clear Carry Flag
daa
add a,&F0
adc a,&40 ;this sequence of instructions converts hexadecimal values to ASCII.
jp PrintChar ;hardware-specific routine, omitted. Thanks to Keith of Chibiakumas for this one!</syntaxhighlight>
 
{{out}}
<pre>
00 01 02 03 04 05 06 07
10 11 12 13 14 15 16 17
20 21 22 23 24 25 26 27
30 31 32 33 34 35 36 37
40 41 42 43 44 45 46 47
50 51 52 53 54 55 56 57
60 61 62 63 64 65 66 67
70 71 72 73 74 75 76 77
</pre>
 
=={{header|zkl}}==
<syntaxhighlight lang="zkl">foreach n in ([0..]){println("%.8B".fmt(n))}</syntaxhighlight>
{{out}}
<pre>
0
1
2
3
4
5
6
7
10
11
12
</pre>
 
=={{header|ZX Spectrum Basic}}==
<syntaxhighlight lang="zxbasic">10 PRINT "DEC. OCT."
20 FOR i=0 TO 20
30 LET o$="": LET n=i
40 LET o$=STR$ FN m(n,8)+o$
50 LET n=INT (n/8)
60 IF n>0 THEN GO TO 40
70 PRINT i;TAB 3;" = ";o$
80 NEXT i
90 STOP
100 DEF FN m(a,b)=a-INT (a/b)*b</syntaxhighlight>
890

edits