Last active
April 19, 2025 02:14
-
-
Save fu-sen/3d24bb9a3b241c2e50ac9beeba34d189 to your computer and use it in GitHub Desktop.
数当て - SHARP POCKET COMPUTER PC-E200/G series BASIC https://poke-com.jimdofree.com/basic-%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%A0/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 ' アズアテ Kazu-ate | SHARP POCKET COMPUTER PC-E200 / G series BASIC | |
2 ' Copyright (c) 2025 BALLOON | FU-SEN | |
3 ' The MIT License (MIT) - https://mit.balloon.net.eu.org/#2025 | |
10 RANDOMIZE | |
20 I=0 | |
30 R=RND 100-1 | |
40 I=I+1 | |
50 PRINT"ターン ";STR$(I); | |
60 INPUT" カズ(0-99)>";K | |
70 IF K>R PRINT "チイサイ":GOTO 40 | |
80 IF R>K PRINT "オオキイ":GOTO 40 | |
90 END |
Author
fu-sen
commented
Feb 20, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment