#include
#include
using namespace std;
int main(int argc, char *argv[])
{
int n;
cout<<"Введите количество элементов массива."<<endl;<br> cin>>n;
int mas1[n];
int mas2[n];
for(int i=0; i mas1[i] = rand()%100; //Заполняем массив случайными числами от 0 до 100
if(mas1[i]%10 == 4) {
mas2[i]=mas1[i]/2;
cout<<"Замена! ";<br> }
else {cout<<"\t";<br> mas2[i]=mas1[i];
}
cout<<mas1[i]<<'\t'<<mas2[i]<<endl;<br> }
system("PAUSE");
return EXIT_SUCCESS;
}