#include using namespace std; const int uzunluk = 10; void sayiuret(int min, int max, int dizi[]){ srand(time(NULL)); for(int i = 0; i<50; i++){ dizi[i] = rand()%(max-min + 1) + min; } } float artort(int dizi[uzunluk]){ int toplam = 0; for(int i = 0; i dizi[i]){ dizi[0] = dizi[i]; } } min = dizi[0]; cout << "Maksimum: " << maks << endl; cout << "Minimum: " << min << endl; } void ciftler(int dizi[uzunluk]){ cout << "Çiftler" << endl; for(int i = 0; i> A[i][j]; cout << endl; } cout << endl; for(int j = 0; j<3; j++){ cout << "B" << "[" << i << "][" << j << "]: "; cin >> B[i][j]; cout << endl; } } } void matristopla(int A[3][3], int B[3][3], int toplam[3][3]){ for(int i = 0; i<3; i++){ for(int j = 0; j<3; j++){ toplam[i][j] = A[i][j] + B[i][j]; } } for(int i = 0; i<3; i++){ for(int j = 0; j<3; j++){ cout << toplam[i][j]; } } }