home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 10: University / CDAT10.iso / TUTORIALES / CursoC / ejemplos / while.c < prev   
Encoding:
C/C++ Source or Header  |  1996-12-25  |  209 b   |  14 lines

  1. /* Uso de la sentencia WHILE. */
  2.  
  3. #include <stdio.h>
  4.  
  5. main() /* Escribe los números del 1 al 10 */
  6. {
  7.    int numero=1;
  8.    while(numero<=10)
  9.    {
  10.       printf("%d\n",numero);
  11.       numero++;
  12.    }
  13. }
  14.