Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int n;
- scanf("%d", &n);
- int niza[n];
- for(int i = 0; i < n; i++) {
- scanf("%d", &niza[i]);
- }
- int frekvencija;
- for(int i = 0; i < n; i++) {
- if(niza[i] != -1) { // dokolku ne sme go ispecatile, togas proveri go
- frekvencija = 1;
- for(int j = i + 1; j < n; j++) {
- if(niza[i] == niza[j]) {
- frekvencija++;
- niza[j] = -1;
- }
- }
- printf("Frekvencija na %d = %d\n", niza[i], frekvencija);
- niza[i] = -1;
- }
- }
- return 0;
- }
- // 5 10 2 5 50 5 10 1 2 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement