Te he hecho el 4, que es tarde y no me apetece pensar xD
Además, me viene bien para las olimpiadas de informatica, si me apetece mañana te hago los otros jaja
Código C++:
Ver original#include <iostream>
using namespace std;
int main(){
unsigned int numeros[10], aux1=0, aux2=0, aux3=0, x;
for (x=0; x<10; x++) cin >> numeros[x];
for (x=0; x<10; x++){
if (numeros[x] < 15) aux1++;
if (numeros[x] > 50) aux2++;
if (numeros[x] >= 45 && numeros[x] <= 55) aux3++;
}
cout << "Menores que 15: "<< aux1 << endl;
cout << "Mayores que 50: "<< aux2 << endl;
cout << "Entre 45 y 55: "<< aux3 << endl;
return 0;
}