[ create a new paste ] login | about

Link: http://codepad.org/Ld1J3Zdt    [ raw code | output | fork ]

C++, pasted on Jan 14:
1
2
3
4
5
6
7
8
9
# include<stdio.h>

using namespace std;
int main()
{
for(int i = 0; i<21; i++){
    cout <<i<<endl;
}
}


Output:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


Create a new paste based on this one


Comments: