c++
#include <iostream>
using namespace std;
int main() {
setlocale(0, "");
int x, t[2][2] = {0}, y = 1;
cout << "Введите температуру(99 - ввод окончен): ";
cin >> x;
if (x == 99) goto out;
t[0][0] = x;
t[1][0] = y;
y++;
if (x >= t[0][0]) {
t[0][1] = x;
t[1][1] = y;
}
else {
t[0][1] = t[0][0];
t[1][1] = t[1][0];
while (x!=99) {
if (x > t[0][0] && x < t[0][1]) {
else if (x < t[0][0]) {
out:cout << "Два самых холодных дня (в порядке убывания температуры): " << t[1][0] << " " << t[1][1];
return 0;
Элементы, чтобы не вводить заполняются автоматически
#include <ctime>
int main()
{
int n, i, m, mi;
cin >> n;
int a[n];
srand((unsigned)time(NULL));
for (i=0; i<n; i++)
a[i]=rand()%100;
cout << a[i] << " ";
cout << "\n";
m=a[0];
mi=0;
for(i=0;i<n;i++)
{ if(m<a[i])
{ m=a[i];
mi=i;
for(i=1;i<mi;i+=2)
a[i]=a[i]*m;
cout << "max element a[" << mi << "]=" << m << "\n";
c++
#include <iostream>
using namespace std;
int main() {
setlocale(0, "");
int x, t[2][2] = {0}, y = 1;
cout << "Введите температуру(99 - ввод окончен): ";
cin >> x;
if (x == 99) goto out;
t[0][0] = x;
t[1][0] = y;
y++;
cout << "Введите температуру(99 - ввод окончен): ";
cin >> x;
if (x == 99) goto out;
if (x >= t[0][0]) {
t[0][1] = x;
t[1][1] = y;
}
else {
t[0][1] = t[0][0];
t[0][0] = x;
t[1][1] = t[1][0];
t[1][0] = y;
}
y++;
while (x!=99) {
cout << "Введите температуру(99 - ввод окончен): ";
cin >> x;
if (x > t[0][0] && x < t[0][1]) {
t[0][1] = x;
t[1][1] = y;
}
else if (x < t[0][0]) {
t[0][1] = t[0][0];
t[0][0] = x;
t[1][1] = t[1][0];
t[1][0] = y;
}
y++;
}
out:cout << "Два самых холодных дня (в порядке убывания температуры): " << t[1][0] << " " << t[1][1];
return 0;
}
Элементы, чтобы не вводить заполняются автоматически
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
int n, i, m, mi;
cin >> n;
int a[n];
srand((unsigned)time(NULL));
for (i=0; i<n; i++)
{
a[i]=rand()%100;
cout << a[i] << " ";
}
cout << "\n";
m=a[0];
mi=0;
for(i=0;i<n;i++)
{ if(m<a[i])
{ m=a[i];
mi=i;
}
}
for(i=1;i<mi;i+=2)
a[i]=a[i]*m;
cout << "max element a[" << mi << "]=" << m << "\n";
for (i=0; i<n; i++)
cout << a[i] << " ";
return 0;
}