You are viewing a single comment's thread from:RE: Programming contest 4View the full contextclevershovel (52)in #contest • 7 years ago (edited)#include <iostream> int main() { for (int i = 1; i < 1000; i += 2) std::cout << i << std::endl; return 0; }