The wiki states True = -1 and False = 0. Quite often I'm not getting those values (particularly for False) even though I know what the correct result of the outcome should be.
Ok, we need to hook up at a bar and have a beer and talk this through.... so you guys are saying the IF is in fact a decision and not a simple ON arriving at the index zero, print the index zero?? The IF statement in your example Steve simply says "IF a", which I have always read "On reaching a " or " If the loop index has reached a .. print it's value"
It seems, even if I make a = 0, which should be a True statement (ie a = 0 : If a then Print "True" else Print "False" comes up with False) we don't take away the decisional aspect of "If a"
I appreciate the lesson here. Thanks guys.
if a> 5 then b = b +1
this can also be the case:
b = b + abs (a> 5)
Ok, we need to hook up at a bar and have a beer and talk this through.... so you guys are saying the IF is in fact a decision and not a simple ON arriving at the index zero, print the index zero?? The IF statement in your example Steve simply says "IF a", which I have always read "On reaching a " or " If the loop index has reached a .. print it's value"
It seems, even if I make a = 0, which should be a True statement (ie a = 0 : If a then Print "True" else Print "False" comes up with False) we don't take away the decisional aspect of "If a"
I appreciate the lesson here. Thanks guys.
The beauty of programming. :) when a man grabs the heat and becomes a zombie and is already lazy to press the keyboard, he tries to simplify.
Task: Add all numbers divisible by 3 from 0 to 500 and all numbers divisible by 7 from 500 to 1000, except for square numbers. and except for 35!Code: QB64: [Select]