Reputation: 13
I want to take out of symbols row all integer, which divide with 3. Can someone please help me how to do this?
Upvotes: 0
Views: 156
Reputation: 612874
Check that the remainder when divided by 3 is zero:
IsMultipleOfThree := (num mod 3) = 0;
I'm not sure what you mean by "take out of symbols row".
Upvotes: 2