We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7cdd68f + 621d869 commit 8128dfcCopy full SHA for 8128dfc
Loop.cpp
@@ -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