Помогите пожалуйста решить 5 задача (а) очень надо!!
#include #include #include int main() { srand(time(NULL)); int a[11]; int s = 0; for (int i = 1; i < 11; ++i){ a[i] = rand() % 10 + 1; if ((i-1) && a[i] > a[i-1]) s++; std::cout << a[i] << ",";<br> } std::cout << std::endl << s;<br> return 0; }