-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1098.cpp
45 lines (34 loc) · 805 Bytes
/
1098.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// https://judge.beecrowd.com/en/problems/view/1098
/*
Time Complexity =>
Space Complexity =>
*/
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
ifstream input("input.txt");
ofstream output("output.txt");
const double INCREMENT_COUNTER = 0.2;
const int INITIAL_COUNTER = 3;
double INITIAL_I = 0;
double INITIAL_J = 1;
double I = INITIAL_I, J = INITIAL_J;
int counter = INITIAL_COUNTER;
while (I <= 2) {
cout << "I=" << I << " J=" << J << endl;
J++;
counter--;
if (counter == 0) {
INITIAL_I += INCREMENT_COUNTER;
I = INITIAL_I;
INITIAL_J += INCREMENT_COUNTER;
J = INITIAL_J;
counter = INITIAL_COUNTER;
}
}
return 0;
}