#include "stdafx.h"
#include <math.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv)
{
setlocale(0, "rus");
const int n = 10;
int i, q = 0;
float z, A[n];
std::cout << "введите последовательность " << n << " чисел:\n";
for (i = 0; i < n; i++)
std::cin >> A[i];
std::cout << " введите сравниваемое число:\n";
std::cin >> z;
for (i = 0; i < n; i++)
{
if (A[i]>z)
{
A[i] = z;
q++;
}
std::cout << A[i] << " ";
}
std::cout << "\n число замен " << q;
return 0;
}