Code:#include <iostream> using namespace std; int main() { // Initialisierung der Variablen int c1=0, c2, c3, index; //Feld mit 6 Elementen string feld[6]= {"012", "102", "201", "210", "021", "120"}; while(c1 < 6 && index !=65){ for (index = 1; index < 65; index++){ cout << index << " " << feld[c1] << endl; c1++; if(c1 == 6){ c1=0; }}} return 0; }