fork download
  1. #include <math.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. int numero;
  7.  
  8. for ( numero = 2 ; numero <= 10 ; numero += 2 )
  9. {
  10. printf( "%.f ", pow( numero, 3 ) );
  11. }
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
8 64 216 512 1000