Periodic table: Difference between revisions

Content added Content deleted
m (syntax highlighting fixup automation)
Line 66: Line 66:
Since the 6502 can't index an array larger than 256 bytes, we'll store all the "low bytes" in one table and all the "high bytes" in another. Both tables share the same index, so this lets us store up to 255 possible elements while taking the same amount of memory as a single table of 16-bit values. Right now, we can do this either way, but since we're close to 128 elements, may as well future-proof the code, right?
Since the 6502 can't index an array larger than 256 bytes, we'll store all the "low bytes" in one table and all the "high bytes" in another. Both tables share the same index, so this lets us store up to 255 possible elements while taking the same amount of memory as a single table of 16-bit values. Right now, we can do this either way, but since we're close to 128 elements, may as well future-proof the code, right?


<lang 6502asm>Lookup: ;INPUT: X = atomic number of the element of interest.
<syntaxhighlight lang="6502asm">Lookup: ;INPUT: X = atomic number of the element of interest.
LDA PeriodicTable_Column,x
LDA PeriodicTable_Column,x
STA $20 ;store column number in memory (I chose $20 arbitrarily, you can store it anywhere)
STA $20 ;store column number in memory (I chose $20 arbitrarily, you can store it anywhere)
Line 76: Line 76:
db $ff,$01,$18,$01,$02,$13,$14,$15,$16,$17,$18,... ;I don't need to write them all out, the concept is self-explanatory enough.
db $ff,$01,$18,$01,$02,$13,$14,$15,$16,$17,$18,... ;I don't need to write them all out, the concept is self-explanatory enough.
PeriodicTable_Row:
PeriodicTable_Row:
db $ff,$01,$01,$02,$02,$02,$02,$02,$02,$02,$02,...</lang>
db $ff,$01,$01,$02,$02,$02,$02,$02,$02,$02,$02,...</syntaxhighlight>


=={{header|68000 Assembly}}==
=={{header|68000 Assembly}}==
Line 84: Line 84:
The table consists of 118 16-bit values. The high byte is the row number, the low byte is the column number. Both are stored as binary-coded decimal (i.e. hex values that look like base 10 numbers.)
The table consists of 118 16-bit values. The high byte is the row number, the low byte is the column number. Both are stored as binary-coded decimal (i.e. hex values that look like base 10 numbers.)


<lang 68000devpac>Lookup:
<syntaxhighlight lang="68000devpac">Lookup:
;input: D0.W = the atomic number of interest.
;input: D0.W = the atomic number of interest.
LEA PeriodicTable,A0
LEA PeriodicTable,A0
Line 103: Line 103:
DC.W $0217 ;FLUORINE
DC.W $0217 ;FLUORINE
DC.W $0218 ;NEON
DC.W $0218 ;NEON
;etc.</lang>
;etc.</syntaxhighlight>


=={{header|ALGOL 68}}==
=={{header|ALGOL 68}}==
<lang algol68>BEGIN # display the period and group number of an element, #
<syntaxhighlight lang="algol68">BEGIN # display the period and group number of an element, #
# given its atomic number #
# given its atomic number #
INT max atomic number = 118; # highest known element #
INT max atomic number = 118; # highest known element #
Line 166: Line 166:
FI
FI
OD
OD
END</lang>
END</syntaxhighlight>
{{out}}
{{out}}
<pre>
<pre>
Line 188: Line 188:
==={{header|Applesoft BASIC}}===
==={{header|Applesoft BASIC}}===
This program borrows from the [[#Python|Python]] solution but only PRINTs the results of the tests shown in the task. Each row and column from the tests are PLOTted in a COLORful table.
This program borrows from the [[#Python|Python]] solution but only PRINTs the results of the tests shown in the task. Each row and column from the tests are PLOTted in a COLORful table.
<lang gwbasic>0 GR:HOME:COLOR=11:FORR=1TO7:FORC=1TO2:GOSUB7:NEXTC,R:COLOR=7:FORR=4TO7:FORC=3+(R>5)TO12:GOSUB7:NEXTC,R:COLOR=13:FORR=2TO7:FORC=13TO18:GOSUB7:NEXTC,R
<syntaxhighlight lang="gwbasic">0 GR:HOME:COLOR=11:FORR=1TO7:FORC=1TO2:GOSUB7:NEXTC,R:COLOR=7:FORR=4TO7:FORC=3+(R>5)TO12:GOSUB7:NEXTC,R:COLOR=13:FORR=2TO7:FORC=13TO18:GOSUB7:NEXTC,R
1 forr=2to7:forc=13to18:GOSUB7:NEXTC,R:COLOR=14:R=8:FORC=4TO18:GOSUB7:NEXTC:COLOR=12:R=9:FORC=4TO18:GOSUB7:NEXTC:R=9:FORC=4TO18:GOSUB7:NEXTC:Z=2:R=7:C=3:GOSUB7:COLOR=14:R=6:C=3:GOSUB7:COLOR=15
1 forr=2to7:forc=13to18:GOSUB7:NEXTC,R:COLOR=14:R=8:FORC=4TO18:GOSUB7:NEXTC:COLOR=12:R=9:FORC=4TO18:GOSUB7:NEXTC:R=9:FORC=4TO18:GOSUB7:NEXTC:Z=2:R=7:C=3:GOSUB7:COLOR=14:R=6:C=3:GOSUB7:COLOR=15
2 S=14:W=18:FORI=1TO7:READN(I),I(I):NEXT:DATA2,0,10,0,18,0,36,0,54,0,86,57,118,89,1,1,1,2,1,18,29,4,11,42,5,6,57,8,4,58,8,5,72,6,4,89,9,4,59,8,6,71,8,18,90,9,5,103,9,18
2 S=14:W=18:FORI=1TO7:READN(I),I(I):NEXT:DATA2,0,10,0,18,0,36,0,54,0,86,57,118,89,1,1,1,2,1,18,29,4,11,42,5,6,57,8,4,58,8,5,72,6,4,89,9,4,59,8,6,71,8,18,90,9,5,103,9,18
Line 195: Line 195:
5 E=N-P:K=A-P:IFI(R)AND(I(R)<=AANDA<=I(R)+S)THENR=R+2:C=K+1:RETURN
5 E=N-P:K=A-P:IFI(R)AND(I(R)<=AANDA<=I(R)+S)THENR=R+2:C=K+1:RETURN
6 E=W-E:L=1+(N>2):C=K+E*(K>L):RETURN
6 E=W-E:L=1+(N>2):C=K+E*(K>L):RETURN
7 K=C+(R=1ANDC=2)*16:VLINR*4+Z,R*4+2ATK*2+1:RETURN</lang>
7 K=C+(R=1ANDC=2)*16:VLINR*4+Z,R*4+2ATK*2+1:RETURN</syntaxhighlight>


=== {{header|ASIC}} ===
=== {{header|ASIC}} ===
{{trans|Nascom BASIC}}
{{trans|Nascom BASIC}}
<lang basic>
<syntaxhighlight lang="basic">
REM Periodic table
REM Periodic table
DIM A(7)
DIM A(7)
Line 240: Line 240:
PRINT C
PRINT C
RETURN
RETURN
</syntaxhighlight>
</lang>
{{out}}
{{out}}
<pre>
<pre>
Line 257: Line 257:
==={{header|BASIC256}}===
==={{header|BASIC256}}===
{{trans|FreeBASIC}}
{{trans|FreeBASIC}}
<lang BASIC256>subroutine MostarPos(N)
<syntaxhighlight lang="basic256">subroutine MostarPos(N)
dim A = { 1, 2, 5, 13, 57, 72, 89, 104}
dim A = { 1, 2, 5, 13, 57, 72, 89, 104}
dim B = {-1, 15, 25, 35, 72, 21, 58, 7}
dim B = {-1, 15, 25, 35, 72, 21, 58, 7}
Line 273: Line 273:
for I = 0 to Element[?]-1
for I = 0 to Element[?]-1
call MostarPos(Element[I])
call MostarPos(Element[I])
next I</lang>
next I</syntaxhighlight>
{{out}}
{{out}}
<pre>Same as FreeBASIC entry.</pre>
<pre>Same as FreeBASIC entry.</pre>
Line 279: Line 279:
==={{header|FreeBASIC}}===
==={{header|FreeBASIC}}===
{{trans|XPL0}}
{{trans|XPL0}}
<lang freebasic>Sub MostarPos(N As Integer)
<syntaxhighlight lang="freebasic">Sub MostarPos(N As Integer)
Dim As Integer M, I, R, C
Dim As Integer M, I, R, C
Dim As Integer A(0 To 7) = { 1, 2, 5, 13, 57, 72, 89, 104} 'magic numbers
Dim As Integer A(0 To 7) = { 1, 2, 5, 13, 57, 72, 89, 104} 'magic numbers
Line 296: Line 296:
For I As Integer = 0 To Ubound(Element)
For I As Integer = 0 To Ubound(Element)
MostarPos(Element(I))
MostarPos(Element(I))
Next I</lang>
Next I</syntaxhighlight>
{{out}}
{{out}}
<pre>Atomic number 1 -> 1, 1
<pre>Atomic number 1 -> 1, 1
Line 314: Line 314:
==={{header|FutureBasic}}===
==={{header|FutureBasic}}===
Old fashioned way:
Old fashioned way:
<lang futurebasic>
<syntaxhighlight lang="futurebasic">
include "NSLog.incl"
include "NSLog.incl"


Line 365: Line 365:


HandleEvents
HandleEvents
</syntaxhighlight>
</lang>
{{out}}
{{out}}
<pre>
<pre>
Line 385: Line 385:


Modern way. (Too bad you can no longer upload images to Rosetta Code.)
Modern way. (Too bad you can no longer upload images to Rosetta Code.)
<lang futurebasic>
<syntaxhighlight lang="futurebasic">
_window = 1
_window = 1


Line 455: Line 455:


HandleEvents
HandleEvents
</syntaxhighlight>
</lang>
{{out}}
{{out}}
<pre>
<pre>
Line 462: Line 462:


==={{header|Gambas}}===
==={{header|Gambas}}===
<lang gambas>Sub MostarPos(N As Integer) 'Mostrar fila y columna para el elemento
<syntaxhighlight lang="gambas">Sub MostarPos(N As Integer) 'Mostrar fila y columna para el elemento
Dim M, I, R, C As Integer
Dim M, I, R, C As Integer
Dim A As Integer[] = [1, 2, 5, 13, 57, 72, 89, 104] 'magic numbers
Dim A As Integer[] = [1, 2, 5, 13, 57, 72, 89, 104] 'magic numbers
Line 483: Line 483:
Next
Next


End</lang>
End</syntaxhighlight>
{{out}}
{{out}}
<pre>Same as FreeBASIC entry.</pre>
<pre>Same as FreeBASIC entry.</pre>
Line 490: Line 490:
{{trans|Nascom BASIC}}
{{trans|Nascom BASIC}}
{{works with|Commodore BASIC|3.5}}
{{works with|Commodore BASIC|3.5}}
<lang gwbasic>
<syntaxhighlight lang="gwbasic">
10 REM Periodic table
10 REM Periodic table
20 GOSUB 200
20 GOSUB 200
Line 523: Line 523:
1030 REM Example elements (atomic numbers).
1030 REM Example elements (atomic numbers).
1040 DATA 1, 2, 29, 42, 57, 58, 72, 89, 90, 103
1040 DATA 1, 2, 29, 42, 57, 58, 72, 89, 90, 103
</syntaxhighlight>
</lang>


=== {{header|Nascom BASIC}} ===
=== {{header|Nascom BASIC}} ===
{{works with|Nascom ROM BASIC|4.7}}
{{works with|Nascom ROM BASIC|4.7}}
<lang basic>
<syntaxhighlight lang="basic">
10 REM Periodic table
10 REM Periodic table
20 GOSUB 200
20 GOSUB 200
Line 551: Line 551:
1030 REM ** Example elements (atomic numbers).
1030 REM ** Example elements (atomic numbers).
1040 DATA 1,2,29,42,57,58,72,89,90,103
1040 DATA 1,2,29,42,57,58,72,89,90,103
</lang>
</syntaxhighlight>
{{out}}
{{out}}
<pre>
<pre>
Line 570: Line 570:
{{works with|QuickBasic|4.5}}
{{works with|QuickBasic|4.5}}
{{trans|FreeBASIC}}
{{trans|FreeBASIC}}
<lang qbasic>SUB MostarPos (N)
<syntaxhighlight lang="qbasic">SUB MostarPos (N)
DIM a(7)
DIM a(7)
RESTORE a:
RESTORE a:
Line 601: Line 601:
DATA 1, 2, 5, 13, 57, 72, 89, 104
DATA 1, 2, 5, 13, 57, 72, 89, 104
b:
b:
DATA -1, 15, 25, 35, 72, 21, 58, 7</lang>
DATA -1, 15, 25, 35, 72, 21, 58, 7</syntaxhighlight>
{{out}}
{{out}}
<pre>Same as FreeBASIC entry.</pre>
<pre>Same as FreeBASIC entry.</pre>
Line 609: Line 609:
{{works with|Liberty BASIC}}
{{works with|Liberty BASIC}}
{{trans|FreeBASIC}}
{{trans|FreeBASIC}}
<lang lb>dim Element(12)
<syntaxhighlight lang="lb">dim Element(12)
Element(0) = 1
Element(0) = 1
Element(1) = 2
Element(1) = 2
Line 655: Line 655:
C = (M mod 18) +1
C = (M mod 18) +1
print "Atomic number "; using("###", N); " -> "; R; ", "; C
print "Atomic number "; using("###", N); " -> "; R; ", "; C
end sub</lang>
end sub</syntaxhighlight>
{{out}}
{{out}}
<pre>Same as FreeBASIC entry.</pre>
<pre>Same as FreeBASIC entry.</pre>
Line 661: Line 661:
==={{header|True BASIC}}===
==={{header|True BASIC}}===
{{trans|FreeBASIC}}
{{trans|FreeBASIC}}
<lang qbasic>SUB MostarPos (n)
<syntaxhighlight lang="qbasic">SUB MostarPos (n)
DIM a(0 TO 7)
DIM a(0 TO 7)
LET a(0) = 1
LET a(0) = 1
Line 708: Line 708:
CALL MostarPos (element(e))
CALL MostarPos (element(e))
NEXT e
NEXT e
END</lang>
END</syntaxhighlight>
{{out}}
{{out}}
<pre>Similar to FreeBASIC entry.</pre>
<pre>Similar to FreeBASIC entry.</pre>
Line 715: Line 715:
{{works with|Windows XBasic}}
{{works with|Windows XBasic}}
{{trans|FreeBASIC}}
{{trans|FreeBASIC}}
<lang xbasic>PROGRAM "Periodic table"
<syntaxhighlight lang="xbasic">PROGRAM "Periodic table"


DECLARE FUNCTION Entry ()
DECLARE FUNCTION Entry ()
Line 771: Line 771:


END FUNCTION
END FUNCTION
END PROGRAM</lang>
END PROGRAM</syntaxhighlight>
{{out}}
{{out}}
<pre>Similar to FreeBASIC entry.</pre>
<pre>Similar to FreeBASIC entry.</pre>
Line 777: Line 777:
==={{header|Yabasic}}===
==={{header|Yabasic}}===
{{trans|FreeBASIC}}
{{trans|FreeBASIC}}
<lang freebasic>// Rosetta Code problem: http://rosettacode.org/wiki/Periodic_table
<syntaxhighlight lang="freebasic">// Rosetta Code problem: http://rosettacode.org/wiki/Periodic_table
// by Jjuanhdez, 06/2022
// by Jjuanhdez, 06/2022


Line 813: Line 813:
C = mod(M, 18) +1
C = mod(M, 18) +1
print "Atomic number ", N using("###"), " -> ", R, ", ", C
print "Atomic number ", N using("###"), " -> ", R, ", ", C
end sub</lang>
end sub</syntaxhighlight>
{{out}}
{{out}}
<pre>Same as FreeBASIC entry.</pre>
<pre>Same as FreeBASIC entry.</pre>
Line 819: Line 819:
=={{header|Go}}==
=={{header|Go}}==
{{trans|Wren}}
{{trans|Wren}}
<lang ecmascript>package main
<syntaxhighlight lang="ecmascript">package main


import (
import (
Line 865: Line 865:
fmt.Printf("Atomic number %3d -> %d, %-2d\n", n, row, col)
fmt.Printf("Atomic number %3d -> %d, %-2d\n", n, row, col)
}
}
}</lang>
}</syntaxhighlight>


{{out}}
{{out}}
Line 888: Line 888:
Basically, here, we want a lookup table. For example:
Basically, here, we want a lookup table. For example:


<lang J>PT=: (' ',.~[;._2) {{)n
<syntaxhighlight lang="j">PT=: (' ',.~[;._2) {{)n
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
1 H He
1 H He
Line 911: Line 911:
}}
}}


rowcol=: ptrc''</lang>
rowcol=: ptrc''</syntaxhighlight>


In other words, start with a hand crafted representation of the periodic table. Elements here are tokens with 1 or 2 letters. Locate the position of each token in the table. Get an initial row and column number from the character positions in the table. Translate character column to periodic table column by enumerating the unique (sorted) list of column numbers and using the index in that list. Character row was already periodic table row. Most elements here were already in atomic number order, and we can fix the exceptions by temporarily prefixing each row,col value and sorting. (Here, we use 0 for the first 56 elements, 3 for the next 17 elements (after Lantanoidi, before Aktinoidi), 12 for the next 15 (after Aktinoidi), 2 for the next 15 (the Lantanoidi) and 11 for the final 15 elements (the Aktinoidi).)
In other words, start with a hand crafted representation of the periodic table. Elements here are tokens with 1 or 2 letters. Locate the position of each token in the table. Get an initial row and column number from the character positions in the table. Translate character column to periodic table column by enumerating the unique (sorted) list of column numbers and using the index in that list. Character row was already periodic table row. Most elements here were already in atomic number order, and we can fix the exceptions by temporarily prefixing each row,col value and sorting. (Here, we use 0 for the first 56 elements, 3 for the next 17 elements (after Lantanoidi, before Aktinoidi), 12 for the next 15 (after Aktinoidi), 2 for the next 15 (the Lantanoidi) and 11 for the final 15 elements (the Aktinoidi).)
Line 917: Line 917:
Thus:
Thus:


<lang J> 1 2 29 42 57 58 72 89 { rowcol
<syntaxhighlight lang="j"> 1 2 29 42 57 58 72 89 { rowcol
1 1
1 1
1 18
1 18
Line 925: Line 925:
8 5
8 5
6 4
6 4
9 4</lang>
9 4</syntaxhighlight>




=={{header|Julia}}==
=={{header|Julia}}==
{{trans|Wren}}
{{trans|Wren}}
<lang ruby>const limits = [3:10, 11:18, 19:36, 37:54, 55:86, 87:118]
<syntaxhighlight lang="ruby">const limits = [3:10, 11:18, 19:36, 37:54, 55:86, 87:118]


function periodic_table(n)
function periodic_table(n)
Line 953: Line 953:
println("Atomic number ", lpad(n, 3), " -> ($(rc[1]), $(rc[2]))")
println("Atomic number ", lpad(n, 3), " -> ($(rc[1]), $(rc[2]))")
end
end
</lang>{{out}}
</syntaxhighlight>{{out}}
<pre>
<pre>
Atomic number 1 -> (1, 1)
Atomic number 1 -> (1, 1)
Line 972: Line 972:
=={{header|Mathematica}}/{{header|Wolfram Language}}==
=={{header|Mathematica}}/{{header|Wolfram Language}}==
Mathematica and the Wolfram language include the period and group in the function ElementData but has slightly different definitions for the lantanides and aktinoides.
Mathematica and the Wolfram language include the period and group in the function ElementData but has slightly different definitions for the lantanides and aktinoides.
<lang Mathematica>ClearAll[FindPeriodGroup]
<syntaxhighlight lang="mathematica">ClearAll[FindPeriodGroup]
FindPeriodGroup[n_Integer] := Which[57 <= n <= 70,
FindPeriodGroup[n_Integer] := Which[57 <= n <= 70,
{8, n - 53}
{8, n - 53}
Line 986: Line 986:
]
]
Row[{"Element ", #, " -> ", FindPeriodGroup[#]}] & /@ {1, 2, 29, 42, 57, 58, 59, 71, 72, 89, 90, 103, 113} // Column
Row[{"Element ", #, " -> ", FindPeriodGroup[#]}] & /@ {1, 2, 29, 42, 57, 58, 59, 71, 72, 89, 90, 103, 113} // Column
Graphics[Text[#, {1, -1} Reverse@FindPeriodGroup[#]] & /@ Range[118]]</lang>
Graphics[Text[#, {1, -1} Reverse@FindPeriodGroup[#]] & /@ Range[118]]</syntaxhighlight>
{{out}}
{{out}}
<pre>Element 1 -> {1,1}
<pre>Element 1 -> {1,1}
Line 1,006: Line 1,006:
=={{header|Perl}}==
=={{header|Perl}}==
{{trans|Raku}}
{{trans|Raku}}
<lang perl>use strict;
<syntaxhighlight lang="perl">use strict;
use warnings; no warnings 'uninitialized';
use warnings; no warnings 'uninitialized';
use feature 'say';
use feature 'say';
Line 1,020: Line 1,020:
for my $n (<1 2 29 42 57 58 72 89 90 103 118>) {
for my $n (<1 2 29 42 57 58 72 89 90 103 118>) {
printf "%3d: %2d, %2d\n", $n, map { $_+1 } divmod $n-1 + sum(head $span[$n-1], @offset), $b;
printf "%3d: %2d, %2d\n", $n, map { $_+1 } divmod $n-1 + sum(head $span[$n-1], @offset), $b;
}</lang>
}</syntaxhighlight>
{{out}}
{{out}}
<pre> 1: 1, 1
<pre> 1: 1, 1
Line 1,034: Line 1,034:


=={{header|Phix}}==
=={{header|Phix}}==
<!--<lang Phix>(phixonline)-->
<!--<syntaxhighlight lang="phix">(phixonline)-->
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
<span style="color: #008080;">constant</span> <span style="color: #000000;">match_wp</span> <span style="color: #0000FF;">=</span> <span style="color: #004600;">false</span>
<span style="color: #008080;">constant</span> <span style="color: #000000;">match_wp</span> <span style="color: #0000FF;">=</span> <span style="color: #004600;">false</span>
Line 1,067: Line 1,067:
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">if</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;">"%s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #7060A8;">join</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">apply</span><span style="color: #0000FF;">(</span><span style="color: #004600;">true</span><span style="color: #0000FF;">,</span><span style="color: #7060A8;">join</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">pt</span><span style="color: #0000FF;">,{</span><span style="color: #008000;">"|"</span><span style="color: #0000FF;">}}),</span><span style="color: #008000;">"\n"</span><span style="color: #0000FF;">)})</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;">"%s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #7060A8;">join</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">apply</span><span style="color: #0000FF;">(</span><span style="color: #004600;">true</span><span style="color: #0000FF;">,</span><span style="color: #7060A8;">join</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">pt</span><span style="color: #0000FF;">,{</span><span style="color: #008000;">"|"</span><span style="color: #0000FF;">}}),</span><span style="color: #008000;">"\n"</span><span style="color: #0000FF;">)})</span>
<!--</lang>-->
<!--</syntaxhighlight>-->
{{out}}
{{out}}
With match_wp set to true:
With match_wp set to true:
Line 1,096: Line 1,096:
</pre>
</pre>
===alternate===
===alternate===
<!--<lang Phix>(phixonline)-->
<!--<syntaxhighlight lang="phix">(phixonline)-->
<span style="color: #008080;">constant</span> <span style="color: #000000;">ptxt</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">"""
<span style="color: #008080;">constant</span> <span style="color: #000000;">ptxt</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">"""
__________________________________________________________________________
__________________________________________________________________________
Line 1,149: Line 1,149:
<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;">"Element %d %s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">e</span><span style="color: #0000FF;">,</span><span style="color: #000000;">pt</span><span style="color: #0000FF;">[</span><span style="color: #000000;">e</span><span style="color: #0000FF;">]})</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;">"Element %d %s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">e</span><span style="color: #0000FF;">,</span><span style="color: #000000;">pt</span><span style="color: #0000FF;">[</span><span style="color: #000000;">e</span><span style="color: #0000FF;">]})</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
<!--</lang>-->
<!--</syntaxhighlight>-->
{{out}}
{{out}}
<pre>
<pre>
Line 1,171: Line 1,171:
A solution trying hard not to encode too much data about the table.
A solution trying hard not to encode too much data about the table.


<syntaxhighlight lang="python">
<lang Python>
def perta(atomic) -> (int, int):
def perta(atomic) -> (int, int):


Line 1,219: Line 1,219:
print('TEST:{:3d} -> '.format(input) + str(found) + (f' ; ERROR: expected {out}' if found != out else ''))
print('TEST:{:3d} -> '.format(input) + str(found) + (f' ; ERROR: expected {out}' if found != out else ''))


</syntaxhighlight>
</lang>


=={{header|Raku}}==
=={{header|Raku}}==
<lang perl6>my $b = 18;
<syntaxhighlight lang="raku" line>my $b = 18;
my @offset = 16, 10, 10, (2×$b)+1, (-2×$b)-15, (2×$b)+1, (-2×$b)-15;
my @offset = 16, 10, 10, (2×$b)+1, (-2×$b)-15, (2×$b)+1, (-2×$b)-15;
my @span = flat ^8 Zxx <1 3 8 44 15 17 15 15>;
my @span = flat ^8 Zxx <1 3 8 44 15 17 15 15>;
Line 1,228: Line 1,228:
for <1 2 29 42 57 58 72 89 90 103> -> $n {
for <1 2 29 42 57 58 72 89 90 103> -> $n {
printf "%3d: %2d, %2d\n", $n, map {$_+1}, ($n-1 + [+] @offset.head(@span[$n-1])).polymod($b).reverse;
printf "%3d: %2d, %2d\n", $n, map {$_+1}, ($n-1 + [+] @offset.head(@span[$n-1])).polymod($b).reverse;
}</lang>
}</syntaxhighlight>
{{out}}
{{out}}
<pre> 1: 1, 1
<pre> 1: 1, 1
Line 1,244: Line 1,244:
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
There is a discrepancy between how the periodic table is arranged in the Wikipedia article and how it is arranged in the task description. I've used the latter in the following script.
There is a discrepancy between how the periodic table is arranged in the Wikipedia article and how it is arranged in the task description. I've used the latter in the following script.
<lang ecmascript>import "./fmt" for Fmt
<syntaxhighlight lang="ecmascript">import "./fmt" for Fmt


var limits = [3..10, 11..18, 19..36, 37..54, 55..86, 87..118]
var limits = [3..10, 11..18, 19..36, 37..54, 55..86, 87..118]
Line 1,273: Line 1,273:
var rc = periodicTable.call(n)
var rc = periodicTable.call(n)
Fmt.print("Atomic number $3d -> $d, $-2d", n, rc[0], rc[1])
Fmt.print("Atomic number $3d -> $d, $-2d", n, rc[0], rc[1])
}</lang>
}</syntaxhighlight>


{{out}}
{{out}}
Line 1,293: Line 1,293:


=={{header|XPL0}}==
=={{header|XPL0}}==
<lang XPL0>proc ShowPosn(N); \Show row and column for element
<syntaxhighlight lang="xpl0">proc ShowPosn(N); \Show row and column for element
int N, M, A, B, I, R, C;
int N, M, A, B, I, R, C;
[A:= [ 1, 2, 5, 13, 57, 72, 89, 104]; \magic numbers
[A:= [ 1, 2, 5, 13, 57, 72, 89, 104]; \magic numbers
Line 1,310: Line 1,310:
[Element:= [1, 2, 29, 42, 57, 58, 72, 89, 90, 103];
[Element:= [1, 2, 29, 42, 57, 58, 72, 89, 90, 103];
for I:= 0 to 10-1 do ShowPosn(Element(I));
for I:= 0 to 10-1 do ShowPosn(Element(I));
]</lang>
]</syntaxhighlight>


{{out}}
{{out}}