Initial commit

This commit is contained in:
John Paul Wohlscheid 2019-07-02 00:03:07 -04:00
commit 9871585106
9 changed files with 99 additions and 0 deletions

39
basic/hilo.bas Normal file
View File

@ -0,0 +1,39 @@
' Here is an interactive HI-LO
' Program
[start]
guessMe = int(rnd(1)*100) + 1
'Clear the screen and print the title and instructions
cls
print
print HI-LO
print
print "I have decided on a number between"
print "a hundred, and I want you to guess"
print "what it is. I will tell you to guess"
print "higher or lower, and we'll count up"
print "the number of guesses you use."
print
[ask]
' Ask the user to guess the number and tally the guess
input "OK. What is your guess"; guess
' Now add one to the count variable to count the guesses
let count = count + 1
' Check to see if the guess is right
if guess = guessMe then goto [win]
' Check to see if the guess is too low
if guess < guessMe then print "Guess higher."
' Check to see if the guess is too high
if guess > guessMe then print "Guess lower"
' Go back and ask again
goto [ask]
[win]
' Tell how many guess it took to win
print "You win! It took "; count; " guesses."
' Reset the count variable to zero for the next game
let ocunt = 0
' Ask to play again
input "Play again (Y/N)"; play$
if instr("YESyes", play$) > 0 then goto [start]
print "Press ALT-F4 to close this window."
end

19
basic/salestax.bas Normal file
View File

@ -0,0 +1,19 @@
[start]
print "Type a dollar and cent ammount."
input "(Press 'Enter' alone for help) ?" ; amount
if amount = 0 then goto [help]
let tax = amount * 0.05
print "Tax is: "; tax; ". Total is: "; tax + amount
goto [start]
[help]
cls
print "SALETAX.BAS Help"
print
print "This tax program determines how much tax is"
print "due on an amount entered and also computes"
print "the total amount. The tax rate is 5%"
print
input "Press [Enter] to continue."; dummyVariable
print
goto [start]

5
python/areacircle.py Normal file
View File

@ -0,0 +1,5 @@
pi = 3.14159
r = 10
print(pi * r ** 2)

5
python/birthday.py Normal file
View File

@ -0,0 +1,5 @@
value = input('How old are you?:')
year = 1
print("Next year you will be", int(value) + int(year))

5
python/birthday2.py Normal file
View File

@ -0,0 +1,5 @@
value = input('How old are you?:')
year = input('How many years until your next birthday?')
print("Next year you will be", int(value) + int(year))

1
python/hello.py Normal file
View File

@ -0,0 +1 @@
print("hello world")

10
python/iden.py Normal file
View File

@ -0,0 +1,10 @@
name = "Matt"
first = name
age = 1000
print(id(age))
age = age + 1
print(id(age))
names = []
print(id(names))
names.append("Fred")
print(id(names))

10
python/idne.py Normal file
View File

@ -0,0 +1,10 @@
name = "Matt"
first = name
age = 1000
print(id(age))
age = age + 1
print(id(age))
names = []
print(id(names))
names.append("Fred")
print(id(names}}

View File

@ -0,0 +1,5 @@
b = 6
h = 2
print(2 * (b + h))