Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
20
Task/Create-an-HTML-table/Modula-3/create-an-html-table.mod3
Normal file
20
Task/Create-an-HTML-table/Modula-3/create-an-html-table.mod3
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
MODULE Table EXPORTS Main;
|
||||
|
||||
IMPORT IO, Random;
|
||||
FROM Fmt IMPORT Int, F;
|
||||
|
||||
BEGIN
|
||||
IO.Put("<table style=\"text-align:center; "
|
||||
& "border: 1px solid\"><th></th>"
|
||||
& "<th>X</th><th>Y</th><th><Z</th>");
|
||||
WITH rand = NEW(Random.Default).init() DO
|
||||
FOR I := 0 TO 3 DO
|
||||
IO.Put(F("<tr><th>%s</th><td>%s</td>"
|
||||
& "<td>%s</td><td>%s</td></tr>",
|
||||
Int(I),
|
||||
Int(rand.integer(0, 1000)),
|
||||
Int(rand.integer(0, 1000)),
|
||||
Int(rand.integer(0, 1000))));
|
||||
END;
|
||||
END;
|
||||
END Table.
|
||||
Loading…
Add table
Add a link
Reference in a new issue