Ticket #3853: spit.cc

File spit.cc, 227 bytes (added by Darko Veberic <darko.veberic@…>, 13 years ago)

creates test file

Line 
1#include <iostream>
2
3using namespace std;
4
5
6int
7main()
8{
9 const int n = 500;
10 const int m = n;
11
12 for (int i = 0; i < n; ++i) {
13 for (int j = 0; j < m; ++j)
14 cout << i + j << ' ';
15 cout << '\n';
16 }
17
18 return 0;
19}