fork download
  1. #include <stdio.h>
  2. int main() {
  3.  
  4. int numero = 1;
  5.  
  6. while (numero <= 9) {
  7. printf("%d\n", numero);
  8. numero = numero + 2;
  9. }
  10.  
  11. return 0;
  12.  
  13. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
1
3
5
7
9