fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. for (int i = 10; i <= 100 ; i+= 5 )
  6. {
  7. cout << i << endl;
  8. }
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
10
15
20
25
30
35
40
45
50
55
60
65
70
75
80
85
90
95
100