[Ajuda]Proibir numeros
#8

Quote:
Originally Posted by keller012
Посмотреть сообщение
deu esse erro drakon

Код:
symbol already defined: "IsNumeric"
tive que realocar oque voce colocou la mas deu
so isso ai deu erro
й so vc excluir

pawn Код:
stock IsNumeric(const string[]) {
    new length=strlen(string);
    if (length==0) return false;
    for (new i = 0; i < length; i++) {
        if (
        (string[i] > '9' || string[i] < '0' && string[i]!='-' && string[i]!='+')
        || (string[i]=='-' && i!=0)                                             //
        || (string[i]=='+' && i!=0)                                             //
        ) return false;
    }
    if (length==1 && (string[0]=='-' || string[0]=='+')) return false;
    return true;
}
Reply


Messages In This Thread
[Ajuda]Proibir numeros - by keller012 - 08.07.2010, 15:56
Re: [Ajuda]Proibir numeros - by keller012 - 08.07.2010, 21:30
Re: [Ajuda]Proibir numeros - by ipsBruno - 08.07.2010, 21:54
Re: [Ajuda]Proibir numeros - by keller012 - 08.07.2010, 22:02
Re: [Ajuda]Proibir numeros - by keller012 - 08.07.2010, 22:24
Re: [Ajuda]Proibir numeros - by GTA.Drifter - 16.09.2010, 01:22
Re: [Ajuda]Proibir numeros - by keller012 - 16.09.2010, 01:57
Re: [Ajuda]Proibir numeros - by Canabis - 16.09.2010, 09:50
Re: [Ajuda]Proibir numeros - by TiagoPS - 16.09.2010, 13:23

Forum Jump:


Users browsing this thread: 2 Guest(s)