Explore: Print Rnd
Discover books, insights, and more — all in one place.
Learn more about Print Rnd with top reads curated from trusted sources — all in one place.
AI-Generated Overview About “print-rnd”:
Books Results
Source: The Open Library
The Open Library Search Results
Search results from The Open Library
1The TRS-80 BASIC manual
By Thomas Milton Kemnitz

“The TRS-80 BASIC manual” Metadata:
- Title: The TRS-80 BASIC manual
- Author: Thomas Milton Kemnitz
- Language: English
- Number of Pages: Median: 47
- Publisher: Childrens Press
- Publish Date: 1985
- Publish Location: Chicago
“The TRS-80 BASIC manual” Subjects and Themes:
- Subjects: ➤ BASIC (Computer program language) - Computers - Juvenile literature - Programming - Programming (Computers) - TRS-80 computers - print - program - goto - cls - rnd - gosub - type - computer - manual - disk - basic manual - childrens press - square roots - computer language - print rnd
Edition Identifiers:
- The Open Library ID: OL3023463M
- Online Computer Library Center (OCLC) ID: 11676948
- Library of Congress Control Number (LCCN): 85003735
- All ISBNs: 0516084313 - 9780516084312
Access and General Info:
- First Year Published: 1985
- Is Full Text Available: Yes
- Is The Book Public: Yes
- Access Status: Public
Online Access
Online Borrowing:
- Borrowing from Open Library: Borrowing link
- Borrowing from Archive.org: Borrowing link
Online Marketplaces
Find The TRS-80 BASIC manual at online marketplaces:
- Amazon: Audiable, Kindle and printed editions.
- Ebay: New & used books.
Wiki
Source: Wikipedia
Wikipedia Results
Search Results from Wikipedia
Tiny BASIC
implementation: "This language has been augmented to include the functions RND, USR, and PEEK and POKE, giving the user access to all his system components
Truchet tile
line of Commodore 64 BASIC required to generate such patterns – 10 PRINT CHR$(205.5+RND(1)); : GOTO 10 – to be "a concrete poem, a found poem". Wikimedia
R. N. D. Wilson
/ New York, 1937). Raghley, O Raghley : and other poems, (Edinburgh : Printed for Lawrence Wilson by Robert Mitchell and Sons, 1955). "ROBERT NOBLE DENISON
Commodore BASIC
update by a few ticks. The RND function in Commodore BASIC can use the clock to generate random numbers; this is accomplished by RND(0), however it is of relatively
True BASIC
true basic has 0-15 colours PRINT "Welcome To ..." !Print "Welcome To ..." on the user's screen. DO !Begin the loop LET x=rnd*20 !Let the value 'x' equal
Applesoft BASIC
benefit. The RND function generates a pseudorandom fractional number between 0 and 1. RND(0) returns the most recently generated random number. RND with a negative
Creative Computing Benchmark
40 A=SQR(A): R=R+RND(1) 50 NEXT I 60 FOR I=1 TO 10 70 A=A^2: R=R+RND(1) 80 NEXT I 90 S=S+A: NEXT N 100 PRINT ABS(1010-S/5) 110 PRINT ABS(1000-R) Cray
Integer BASIC
Y=19: X=19 40 COLOR=A:PLOTX,Y/3:X=19:Y=RND(120):V=-1:W=RND(5)-2:L=L+1:IFL>5THEN140:TAB6:PRINT"BALL #";L:PRINT:FORI=1TO100:GOSUB200:NEXTI:M=1:N=0 50 J=Y+W:
One-liner program
colloquially known as 10PRINT, written for the Commodore 64: 10 PRINT CHR$(205.5+RND(1)); : GOTO 10 The following example is a C program (a winning entry
Dining philosophers problem
size_t max) { static std::mt19937 rnd(std::time(nullptr)); return std::uniform_int_distribution<>(min, max)(rnd); } void test(size_t i) // if philosopher