Skip to content

Commit 8128dfc

Browse files
authored
Merge pull request #25 from MHMITHUN/patch-1
Loop.cpp
2 parents 7cdd68f + 621d869 commit 8128dfc

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Loop.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
int main () {
5+
for(int i=1;i<=3;i++){
6+
for(int j=1;j<=3;j++){
7+
cout<<i<<" "<<j<<"\n";
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)