Quick actions

cmd+k|ctrl+k

Navigation

Languages

example_for_2

Snippet info

Language

Cpp

Visibility

public

Author

zvat.333333

Created

2021-02-18T08:18:22Z

Updated

2021-02-18T08:18:47Z

#include <iostream>
using namespace std;

int main() {
    for(int i = 0; i <= 100; i+=2){
        cout << i << endl; 
    }
}
INFO