fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main(void) {
  5. for (int i=3;i-->0;) printf(i?"%f %f ":"%f", pow(3-i,2), pow(3+i,2));
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 5436KB
stdin
Standard input is empty
stdout
1.000000 25.000000 4.000000 16.000000 9.000000