#include <iostream> int main(){ const int n = 6; const int k = 230; int massiv[n] = { 12, 150, 1230, 332, 531, 1321 }; int kol = 0; for (int i = 0; i < n; i++) if (massiv[i] > k) kol++; std::cout << "Kolichestvo: " << kol << std::endl; system("PAUSE");}
int main(){ const int n = 6; const int k = 230;
int massiv[n] = { 12, 150, 1230, 332, 531, 1321 };
int kol = 0; for (int i = 0; i < n; i++) if (massiv[i] > k) kol++;
std::cout << "Kolichestvo: " << kol << std::endl; system("PAUSE");}