[Ayuda] do - 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: [Ayuda] do (
/showthread.php?tid=328860)
[Ayuda] do -
Treyfus - 26.03.2012
Hola les queria preguntar para que sirve el
Respuesta: [Ayuda] do -
junkbuster - 26.03.2012
Quote:
Originally Posted by Treyfus
Hola les queria preguntar para que sirve el
|
Puedes ver aquн.
Re: [Ayuda] do -
santi.arg - 26.03.2012
do = hacer
while = mientras que
entonces..
PHP код:
new int;
do
{
int++;
printf ("%d", int);
}
while (int < 10);
Te va a contar hasta 10 ya que primero hace y despuйs verifica.