Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Control Flow Filter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ENTER YOUR CODE HERE AND PRESS "Run"
For instance:
#include <iostream>
int main()
{
int n = 0;
for (int i = 0; i < 42; ++i)
{
if (i % 2 == 0)
{
n += i;
}
else
{
n *= i;
}
}
std::cout << n << '\n';
}
Enter to Rename, Shift+Enter to Preview
1
if
Enter to Rename, Shift+Enter to Preview
1
#include <algorithm>
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content