fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. for (int i =-13;i>-25;i=i-2)
  8. {
  9. cout<< i<< endl;
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
-13
-15
-17
-19
-21
-23