+ 3
What's the solution of challenge 2 last question?
What's the solution of challenge 2 last question? I don't become the order out! Can you help me?
3 odpowiedzi
+ 3
int small = arr[0];
for (int x=1; x<n; x++) {
if (arr[x] < small) {
small = arr[x];
}
cout << small;
+ 1
Thanks to zen
+ 1
Zen how accept challenge 2 9/11