Originally posted by Tingles
View Post
I may be out by a few centimetres though.


Not considered Hull as a possibility, do you think they would mind if we poured the contents of the pacific onto Hull?
Not considered Hull as a possibility, do you think they would mind if we poured the contents of the pacific onto Hull?

File Edit View Search Run Debug Calls Options Help
------------------------------- Untitled -------------------------------¦+
Ocean1$ = "pacific"
Ocean2$ = "Atlantic"
IF Ocean1$ > Ocean2$ THEN
PRINT Ocean1$; " is bigger than "; Ocean2$; "."
ELSEIF Ocean1$ = Ocean2$ THEN
PRINT Ocean1$; " is the same size as "; Ocean2$; "."
ELSE
PRINT Ocean2$; " is bigger than "; Ocean1$; "."
END IF
C:\QB45>qbasic pacific is bigger than Atlantic. Press any key to continue

Comment