fork download
  1. #include <math.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. int numero;
  7.  
  8. for ( numero = 2 ; numero <= 100 ; 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 1728 2744 4096 5832 8000 10648 13824 17576 21952 27000 32768 39304 46656 54872 64000 74088 85184 97336 110592 125000 140608 157464 175616 195112 216000 238328 262144 287496 314432 343000 373248 405224 438976 474552 512000 551368 592704 636056 681472 729000 778688 830584 884736 941192 1000000