tag mismatch
#1

Hello everyone,

I've created a new function and when I call it I get the error message as title.

pawn Код:
forward IsDivisible(the_number, divided_by);
public IsDivisible(the_number, divided_by)
{
    while(the_number > 0) the_number -= divided_by;
    if(!the_number) return true;
    return false;
}
pawn Код:
if(IsDivisible(100, 3) == false) // the warning line.
        printf("This value can not be divised by 3");
Please help me about it. Thanks.
Reply


Messages In This Thread
tag mismatch - by Emre__ - 20.01.2013, 15:04
Re: tag mismatch - by [XST]O_x - 20.01.2013, 15:27
Re: tag mismatch - by Emre__ - 20.01.2013, 15:29
Re: tag mismatch - by [XST]O_x - 20.01.2013, 15:32
Re: tag mismatch - by Emre__ - 20.01.2013, 15:36
Re: tag mismatch - by [XST]O_x - 20.01.2013, 15:47
Re: tag mismatch - by Emre__ - 20.01.2013, 16:02
Re: tag mismatch - by Vince - 20.01.2013, 16:04
Re: tag mismatch - by LarzI - 20.01.2013, 16:08
Re: tag mismatch - by [XST]O_x - 20.01.2013, 16:19

Forum Jump:


Users browsing this thread: 3 Guest(s)