Respuesta :

Answer:

The hint answer it all

Explanation:

int i= 0;

int n= 5;

while (i < n){

  print((i*2)+1);

  i++;

}

result:

1, 3, 5, 7, 9