Advertisement
-nodo-

Arkusz

Apr 2nd, 2025
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.58 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <random>
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. class Array {
  8. public:
  9.     Array(int size) : size(size) {
  10.         arr = (int *)malloc(size * sizeof(int));
  11.  
  12.         random_device rd;
  13.         mt19937 gen(rd());
  14.         uniform_int_distribution<int> dist(1, 1000);
  15.  
  16.         for (int i = 0; i < size; i++) {
  17.             arr[i] = dist(gen);
  18.         }
  19.     }
  20.  
  21.     void print() {
  22.         for (int i = 0; i < size; i++) {
  23.             cout << i << ": " << arr[i] << endl;
  24.         }
  25.     }
  26.  
  27.     int find(int num) {
  28.         int i;
  29.  
  30.         for (i = 0; i < size; i++) {
  31.             if (arr[i] == num)
  32.                 break;
  33.         }  
  34.  
  35.         return i < size ? i : -1;
  36.     }
  37.  
  38.     int print_odd() {
  39.         int count = 0;
  40.  
  41.         for (int i = 0; i < size; i++) {
  42.             if (arr[i] % 2) {
  43.                 cout << arr[i] << endl;
  44.                 count++;
  45.             }
  46.         }
  47.  
  48.         return count;
  49.     }
  50.  
  51.     float avg() {
  52.         int sum = 0;
  53.  
  54.         for (int i = 0; i < size; i++) {
  55.             sum += arr[i];
  56.         }
  57.  
  58.         return (float)sum / size;
  59.     }
  60.  
  61.     ~Array() {
  62.         free(arr);
  63.     }
  64.  
  65. private:
  66.     int* arr;
  67.     int size;
  68. };
  69.  
  70. int main() {
  71.     Array a(8);
  72.     a.print();
  73.  
  74.     int found = a.find(15);
  75.  
  76.     if (found != -1) {
  77.         cout << "Found @ " << found << endl;
  78.     }
  79.  
  80.     cout << "Liczby nieparzyste:" << endl;
  81.     int odd = a.print_odd();
  82.     cout << "Razem nieparzystych: " << odd << endl;
  83.     cout << "Średnia wszystkich elementów: " << a.avg() << endl;
  84.  
  85.     return 0;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement