Word Count in Code
joboc
6,095 views
Word Count
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ENTER YOUR CODE HERE AND PRESS "Run"
For instance:
#include <iostream>
int main()
{
int i = 0;
i += 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1;
i += 1 + 1 + 1 + 1 + 1 + 1;
std::cout << i << '\n';
}
1
#include <algorithm>
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.