Skip to content

Commit

Permalink
Add beecrowd problem 1098
Browse files Browse the repository at this point in the history
  • Loading branch information
ithallotulio committed Aug 15, 2024
1 parent 76a7f48 commit b5a64f2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions beecrowd/1-beginner/1098.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#include <bits/stdc++.h>

using namespace std;

int main() {
int i, j;
for (i=0; i <= 20; i+=2) {
for (j=1; j <= 3; j++) {
cout << "I=" << i/10.0 << " J=" << j+(i/10.0) << endl;
}
}
return 0;
}

0 comments on commit b5a64f2

Please sign in to comment.