EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
C/C++/C# HTML Java JavaScript Linux PHP Python Swift
 Recursos > Código fuente > Capítulo 13 > Ejemplo 13.23
Números enteros divisibles entre 17 ó 21 (Alternativa simple en bucle para)
 Código fuente
#include <stdio.h>

int main()
{
   int numero;

   printf( "\n   " );

   for ( numero = 1 ; numero <= 100 ; numero++ )
   {

      /* Inicio del anidamiento */
      if ( numero % 17 == 0 || numero % 21 == 0 )
         printf( "%d ", numero );
      /* Fin del anidamiento */

   }

   return 0;
}
 Fichero con extensión (.c)