fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5. for(a=3;a<=99;a=a+3){
  6. printf("%d ", a);
  7. }
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
3  6  9  12  15  18  21  24  27  30  33  36  39  42  45  48  51  54  57  60  63  66  69  72  75  78  81  84  87  90  93  96  99