fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5.  
  6. int main() {
  7. int x;
  8. for (x = 5; x <= 14; x +=3)
  9. cout << x << " ";
  10.  
  11. return 0;
  12.  
  13. }
  14.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
5 8 11 14