1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
for (a=1;a<100;a++) {
for (b=1;b<100;b++) {
for (c=1;c<100;c++) {
for (d=1;d<100;d++) {
for (e=1;e<100;e++) {
// and these a to e produce a key so I want to store them in a map so I
// later can reach them quickly and all of the a to e that produce the same key
// some a to e produce the same key
}
}
}
}
}
// Here I go into a similar for loop
for (f=1;f<100;f++) {
for (g=1;g<100;g++) {
for (h=1;h<100;h++) {
for (i=1;i<100;i++) {
for (j=1;j<100;j++) {
// and these f to j produce a key and if that key exist in my map I would like to match them with all the a to e at that produce the same key
// a1, b1, c1, d1, e1 with f, g, h, i, j
// a2, b2, c2, d2, e2, with f, g, h, i, j
// a3, b3, c3, d3, e3, with f, g, h, i, j
// a1 to e1 produce the same key as a2 to e2 and so on
// I don't know how many a to e will produce the same key
}
}
}
}
}
| |