fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int i = 2;
  6. int j = 3;
  7. int n = 92;
  8. while(i <= n) {
  9. printf(i+" ");
  10. i = i + j;
  11. j = j + 2;
  12. }
  13.  
  14. }
  15.  
Success #stdin #stdout 0s 5360KB
stdin
Standard input is empty
stdout
;<��������