showing how to create a program that will add up your budget using numeric variables input "rent"; budget1 input "gas"; budget2 input "electric"; budget3 print "total";budget1+budget2+budget3
conversation
showing how to use a string of variables
input "how old are you?"; age$
input "where were you born?"; birth$
print birth$ + " is a beautiful place, I can't believe you are" + age$ +" you look so young"
together
showing an example of using both numeric variables and a string of variables input "time you started work?" ;start input "duties you preformed on the job?" ;duties$ input "time you finished work?" ;finish print "today you preformed" + duties$ + " in "; finish - start; " time" Homework | budget | conversation | together
Homework
Tabatha Murphybudget
showing how to create a program that will add up your budget using numeric variablesinput "rent"; budget1
input "gas"; budget2
input "electric"; budget3
print "total";budget1+budget2+budget3
conversation
showing how to use a string of variablesinput "how old are you?"; age$
input "where were you born?"; birth$
print birth$ + " is a beautiful place, I can't believe you are" + age$ +" you look so young"
together
showing an example of using both numeric variables and a string of variablesinput "time you started work?" ;start
input "duties you preformed on the job?" ;duties$
input "time you finished work?" ;finish
print "today you preformed" + duties$ + " in "; finish - start; " time"
Homework | budget | conversation | together