Задача Equal Arrays-Arrays Lab
Здравейте.Някой би ли могъл да ми обясни защо в следната задача се обхожда смао единия от масивите,а с в същото време се сравнява с всеки индекс от другия?Откъде го получаваме тоя индекс на втория масив?И долу сумата се смята само за единия също...?
Ето верния код:
https://pastebin.com/zRgW571C
Ето суловието:
7. Equal Arrays
Read two arrays and print on the console whether they are identical or not. Arrays are identical if their elements are equal. If the arrays are identical find the sum of the first one and print on the console following message: "Arrays are identical. Sum: {sum}", otherwise find the first index where the arrays differ and print on the console following message: "Arrays are not identical. Found difference at {index} index".
Examples
Input |
Output |
10 20 30 10 20 30 |
Arrays are identical. Sum: 60 |
1 2 3 4 5 1 2 4 3 5 |
Arrays are not identical. Found difference at 2 index |
1 10 |
Arrays are not identical. Found difference at 0 index |