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)
#include <iostream>
#include <iomanip>
int main()
{
const double eps = 0.00001;
double x, x0, xk, h, a, s;
int n, i, k;
setlocale(LC_ALL, "Russian");
std::cout << "Введите x0: ";
std::cin >> x0;
std::cout << "Введите xk: ";
std::cin >> xk;
h = 0.1;
x = x0 - h;
n = round((xk - x0) / h) + 1;
std::cout << "№ x S(x) y(x)" << std::endl;
for (i = 0; i < n; i++)
x += h;
a = 1; s = a; k = 0;
while (abs(a) > eps)
a = -a * 2 * x / (2.0 * k + 1) / (2.0 * k + 2);
s += a;
k++;
}
std::cout << i << std::setw(5);
std::cout << x << std::setprecision(5) << std::setw(12);
std::cout << s << std::setprecision(5) << std::setw(12);
std::cout << cos(sqrt(2 * x)) << std::setprecision(5) << std::endl;
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)
#include <iostream>
#include <iomanip>
int main()
{
const double eps = 0.00001;
double x, x0, xk, h, a, s;
int n, i, k;
setlocale(LC_ALL, "Russian");
std::cout << "Введите x0: ";
std::cin >> x0;
std::cout << "Введите xk: ";
std::cin >> xk;
h = 0.1;
x = x0 - h;
n = round((xk - x0) / h) + 1;
std::cout << "№ x S(x) y(x)" << std::endl;
for (i = 0; i < n; i++)
{
x += h;
a = 1; s = a; k = 0;
while (abs(a) > eps)
{
a = -a * 2 * x / (2.0 * k + 1) / (2.0 * k + 2);
s += a;
k++;
}
std::cout << i << std::setw(5);
std::cout << x << std::setprecision(5) << std::setw(12);
std::cout << s << std::setprecision(5) << std::setw(12);
std::cout << cos(sqrt(2 * x)) << std::setprecision(5) << std::endl;
}
return 0;
}