Untitled
unknown
c_cpp
a year ago
231 B
8
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