їComo defino nъmeros correctos? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (
https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: їComo defino nъmeros correctos? (
/showthread.php?tid=608573)
їComo defino nъmeros correctos? -
yesid001 - 02.06.2016
Buenas! Antes que nada, gracias por entrar.
Me explicare con un cуdigo(errуneo, claro) con el fin de que me entiendan:
PHP код:
#define NumerosCorrectos 3,56,98,47,65,332
if(inputtext != NumerosCorrectos) return 1;.
Es eso lo que me gustarнa que me enseсaran, gracias de ante mano. (Doy +rep a buenas respuestas)
Re: їComo defino nъmeros correctos? -
F1N4L - 02.06.2016
Esto?
Код:
new Input = strval(inputtext);
if(Input != 3 || Input != 56 ||Input != 98 ||Input != 47 || Input != 65 ||Input !=332)
{
//code
}
Respuesta: Re: їComo defino nъmeros correctos? -
yesid001 - 02.06.2016
Quote:
Originally Posted by F1N4L
Esto?
Код:
new Input = strval(inputtext);
if(Input != 3 || Input != 56 ||Input != 98 ||Input != 47 || Input != 65 ||Input !=332)
{
//code
}
|
Gracias.
Respuesta: їComo defino nъmeros correctos? -
Shiny_David - 05.06.2016
Echale un ojo a esto, te va a servir, ya pronto podras leer eso.
pawn Код:
new Input = strval(inputtext);
if(Input != 3 || Input != 56 ||Input != 98 ||Input != 47 || Input != 65 ||Input !=332)
{
//code
}
pawn Код:
si(entradadatos no es igual a 3 O entradadatos no es igual a 56 . . .)
{
//code
}
https://sampwiki.blast.hk/wiki/Control_...ures#Operators
Re: їComo defino nъmeros correctos? -
bm0z - 05.06.2016
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
}
Re: їComo defino nъmeros correctos? -
Skritwo - 06.06.2016
Код:
printf("El de arriba es un capo bm0z <3, aguante uruguay wachin\n");
Respuesta: їComo defino nъmeros correctos? -
OTACON - 06.06.2016
Код:
switch(inputtext)
{
case 5,53,98,47,65,332:
{
// nъmero sн correcto
}
}