Quick actions

cmd+k|ctrl+k

Navigation

Languages

Flow control / break, continue, goto / Essential C++

Snippet info

Language

Cpp

Visibility

public

Author

kkowalczyk

Created

2019-03-27T06:53:27Z

Updated

2019-03-27T06:53:27Z

#include <iostream>
using namespace std;

auto main() -> int
{
    for (int i=0; i<10; i++){
    	if (i%2 == 0) {
    		continue;
    	}
    	cout<<"\n @"<<i;
    }
}
INFO