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;
Python
print('Задание1---------------------------------------------')
a=input().split(' ')
#a=['Россия', 'Беларусь', 'Казахстан', 'Украина', 'Китай', 'Албания', \
# 'Турция', 'Франция', 'Германия', 'Канада', 'США', 'Япония', 'Индия']
print(a)
print(sorted(a))
print()
print('Задание2---------------------------------------------')
b=[int(i) for i in input().split()]
#b=[2, 3, 4, 5, 6, 7, 8, 2, 4, 9, 2]
print(b)
c=0
for i in b:
if b.count(i) > c:
val=i
print(i)
print('Задание3---------------------------------------------')
c=[int(i) for i in input().split(',')]
#a=[2, 3, 4, 5, 6, 7, 8, 2, 4, 9, 2]
cort=tuple(c)
print(c)
print(cort)
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;
}
Python
print('Задание1---------------------------------------------')
a=input().split(' ')
#a=['Россия', 'Беларусь', 'Казахстан', 'Украина', 'Китай', 'Албания', \
# 'Турция', 'Франция', 'Германия', 'Канада', 'США', 'Япония', 'Индия']
print(a)
print(sorted(a))
print()
print('Задание2---------------------------------------------')
b=[int(i) for i in input().split()]
#b=[2, 3, 4, 5, 6, 7, 8, 2, 4, 9, 2]
print(b)
c=0
for i in b:
if b.count(i) > c:
val=i
print(i)
print()
print('Задание3---------------------------------------------')
c=[int(i) for i in input().split(',')]
#a=[2, 3, 4, 5, 6, 7, 8, 2, 4, 9, 2]
cort=tuple(c)
print(c)
print(cort)