Untitled
unknown
c_cpp
2 years ago
231 B
9
Indexable
#include <iostream>
using namespace std;
int main() {
for(int i = 0; i < 3; i += 1) {
for(int j = 0; j < 3; j += 1) {
cout << "(" << i << "," << j << ")" << endl;
}
}
return 0;
}
Editor is loading...
Leave a Comment