їComo defino nъmeros correctos?
#5

Quote:
Originally Posted by F1N4L
Посмотреть сообщение
Esto?
Код:
new Input = strval(inputtext);
if(Input != 3 || Input != 56 ||Input != 98 ||Input != 47 || Input != 65 ||Input !=332)
{
	//code
}
Esta mal, serнa asн:
Код:
new Input = strval(inputtext);
if(Input != 3 && Input != 56 && Input != 98 && Input != 47 && Input != 65 && Input !=332)
{
	// nъmero no correcto
}
o sino:
Код:
new Input = strval(inputtext);
if(Input == 3 || Input == 56 || Input == 98 || Input == 47 || Input == 65 || Input ==332)
{
	// nъmero sн correcto
}
Reply


Messages In This Thread
їComo defino nъmeros correctos? - by yesid001 - 02.06.2016, 23:33
Re: їComo defino nъmeros correctos? - by F1N4L - 02.06.2016, 23:38
Respuesta: Re: їComo defino nъmeros correctos? - by yesid001 - 02.06.2016, 23:42
Respuesta: їComo defino nъmeros correctos? - by Shiny_David - 05.06.2016, 23:02
Re: їComo defino nъmeros correctos? - by bm0z - 05.06.2016, 23:31
Re: їComo defino nъmeros correctos? - by Skritwo - 06.06.2016, 00:47
Respuesta: їComo defino nъmeros correctos? - by OTACON - 06.06.2016, 04:25

Forum Jump:


Users browsing this thread: 1 Guest(s)