Skip to content

Commit 273491e

Browse files
committed
pull
1 parent 7602b98 commit 273491e

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

Uri-online-judge/test

8.61 KB
Binary file not shown.

Uri-online-judge/test.cpp

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#include <iostream>
2+
3+
using namespace std;
4+
5+
int main(){
6+
int j = 7;
7+
for (int i = 1; i < 9; i++)
8+
{
9+
cout << "I=" << i << " " << "J="<< j <<" \n";
10+
cout << "I=" << i << " " << "J="<< j-1 <<" \n";
11+
cout << "I=" << i << " " << "J="<< j-2 <<" \n";
12+
i++;
13+
j +=2;
14+
}
15+
16+
return 0;
17+
}

0 commit comments

Comments
 (0)