Odpowiedź:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int tab[2][10];
int x;
cout<<"wypisanie: "<<endl;
for(int i=0;i<2;i++){
for(int j=0;j<10;j++){
tab[i][j]= -20+ rand()%(-20-20+1);
cout<<tab[i][j]<<" ";
}
cout<<endl;
}
cout<<"liczby podzielne przez 7:" ;
for(int i=0;i<2;i++){
for(int j=0;j<10;j++){
if(tab[i][j]%7==0){
cout<<tab[i][j]<<" ";
}
}
cout<<endl;
}
}
Wyjaśnienie: