#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
#include "iostream.h"

void main ( void )
{
int n;
int k;
clrscr();
cout << endl << "cuantas veces quieres que te lo escriba:"; cin >> n;
k = 0;  // inicializacion
while ( k < n )          // condicion

      {
	cout << endl << k << "    hola";    // procesamiento

	k++;      // actualizacion
      }
getch ();

}


Hosted by www.Geocities.ws

1