Helped such a Computer theory hater to get it perfectly inside my head 😃 Thank you School Freeware
@SchoolFreeware12 жыл бұрын
a$ is a string. 5 is an integer. This causes a type mismatch. Change a$ to an integer a% and remove " " from the numbers to make them an integer also.
@oboplays34137 жыл бұрын
Thanks i was wonedering
@ulle8511 ай бұрын
are all compiled .exe files from qb64 compatible with native MS-DOS 6.22?
@TheJuicyjay711 жыл бұрын
your videos have helped me so much in high school thank you !!
@meharkch4 жыл бұрын
True
@theirradiatedgamer12808 жыл бұрын
How would you prevent the user from putting in a different number.
@urmilasuthar50533 жыл бұрын
Do qbasic have break and continue statements
@bedrock1382 жыл бұрын
Really Helped me
@astrosonuhiggs83511 жыл бұрын
yeah! here is another example. is this right. cls input "enter the marks of the student"; M% select case m% case is > = 85 print "a grade" case is >=60 print "b grade" case is >=50 print "c grade' case else print "d grade" end select end
@emperoraltonia6 жыл бұрын
Good! I made some improvements in it, see how is it! CLS INPUT "Enter The Marks of The Student"; M SELECT CASE M CASE IS >= 85 PRINT "Good! It's A" CASE IS >= 60 PRINT "Not Bad, But it can be better if you work on it!" CASE IS >= 50 PRINT "Meh, Your parents won't be happy" CASE IS >= 40 PRINT "Dude, really bad!" CASE IS >= 20 PRINT "DONUT" END SELECT END
@Herbarius13 жыл бұрын
This would have been a good opportunity to also introduce the INPUT$ function... Also I don't get how your grades work, shouldn't a test-score of 50 be a D- and 49 and less be Fail? ;)
@LondonWalkability13 жыл бұрын
can you show us how to do loops? and if its looped how to put in an exit?
@anirudhshetty95172 жыл бұрын
what is the meaning of print between the statements
@evatzug2 жыл бұрын
It's for a newline
@zamwam800510 жыл бұрын
i understand using case select but i see no purpose for using it when there's if and then statements
@canalmaidebao-51976 жыл бұрын
Zam Wam this saves time If you are making a menu for example
@BoberBoomMan3 жыл бұрын
@Tera Oh i get it, so its there so you don't pull a yandredev on your code
@er0rx12 жыл бұрын
Okay thanks for help.
@scienceeducationalvideo30644 жыл бұрын
I am of 12 but I am understanding your video
@rbjaiswal85754 жыл бұрын
I can't understand ucaae$ please help me
@SchoolFreeware4 жыл бұрын
Ucase$ is a function that converts strings to uppercase. By converting the case, and using that case in the program, we remove the case sensitivity of the program. This way "a" is the same as "A".
@rbjaiswal85754 жыл бұрын
@@SchoolFreeware thanks sir , now I got it .
@randomzz73538 жыл бұрын
display following pattern A E A C P E A C E PLZ IN 5 MINS
@er0rx12 жыл бұрын
Why do i get type mismatch, sorry it's in my language. CLS INPUT "Upisi ocjenu "; a$ SELECT CASE a$ CASE IS >= 5 PRINT "Odlican" CASE "4" PRINT "Vrlo dobar" CASE "3" PRINT "Dobar" CASE "2" PRINT "Onako" CASE "1" PRINT "Los" CASE ELSE PRINT "Ne zajebaji ako hoces da znas ocjenu" END SELECT
@DzoniMakaroni8 жыл бұрын
Nemas pojma bogami.
@chiazamdim78417 жыл бұрын
why do you add PRINT PRINT
@SchoolFreeware7 жыл бұрын
A PRINT is like making a new line (Hitting the Enter Key). PRINT PRINT is like hitting the Enter Key twice.
@rachitsardana72926 жыл бұрын
it is done for seperation of lines
@evatzug2 жыл бұрын
2:03 Why just not : ------------------------------------------------------ DIM keyPressed AS STRING INPUT "Enter a key : ", keyPressed PRINT keyPressed; " was entered" ------------------------------------------------------ ?