Hi, its been i while since i needed some help, but i can't seem to wrap my head around this:
The task: Make a program, which asks user [a,b] a and b borders and says how many elements from the Massive A[100] is in the borders of [a,b][ Make sure that the massive borders are from [1;..100] and with random numbers.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <iostream.h>
#include <conio.h>
#include <stdlib.h>
int main()
{
clrscr();
int A[100], a, b, ;
randomize();
cout<< "Input a ";
cin>> a;
cout<< "Input b ";
cin>> b;
if (a<b)
}
getch();