Data update
This commit is contained in:
parent
29a5eea0d4
commit
5c1bb7bfa9
2011 changed files with 35081 additions and 3229 deletions
|
|
@ -0,0 +1,12 @@
|
|||
100 REM Formatted numeric output
|
||||
110 LET N = 7.125
|
||||
120 PRINT USING ("%%%%.###"): N
|
||||
130 PRINT USING ("****.###"): N
|
||||
140 PRINT USING ("####.###"): N
|
||||
150 PRINT USING ("+%%%.###"): N
|
||||
160 PRINT USING ("+%%%.###"): -N
|
||||
170 PRINT USING (".###^^^^^"): N
|
||||
180 PRINT USING ("#.###^^^^^"): N
|
||||
190 PRINT USING ("##.###^^^^^"): N
|
||||
200 PRINT USING ("+.###^^^^^"): -N
|
||||
210 END
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
##
|
||||
var Pi := 3.1415926536;
|
||||
Println($'{Pi,8:f2}');
|
||||
Println($'{Pi,-8:f3}!');
|
||||
Loading…
Add table
Add a link
Reference in a new issue