#include <iostream>
#include <cmath>
int main() {
double x;
std::cout << "Введите значение x: ";
std::cin >> x;
if (std::abs(x) > 1) {
double result = 0;
double term = 1;
double power = x;
int n = 1;
while (std::abs(term) > 0.000001) {
result += term;
power *= x * x;
n += 2;
term = (n % 4 == 1) ? (1 / (double)n) * power : (-1 / (double)n) * power;
}
double arctg_value = std::atan(x) + M_PI_2 - result;
std::cout << "Значение выражения arctg(.x +/- pi/2 - 1/x + 1/(3x^3) - 1/(5x^5) + 1/(7x^7) - ...) равно: " << arctg_value << std::endl;
} else {
std::cout << "|x| <= 1. Выражение не определено." << std::endl;
return 0;
Объяснение:
import re
text = input("Введіть текст: ")
# Підрахунок кількості слів з непарною довжиною
odd_words_count = sum(1 for word in re.findall(r'\b\w+\b', text) if len(word) % 2 != 0)
print("Кількість слів з непарною довжиною: ", odd_words_count)
# Розрахунок частоти входження кожної літери
freq_dict = {}
for letter in re.findall(r'[a-zA-Z]', text):
if letter in freq_dict:
freq_dict[letter] += 1
else:
freq_dict[letter] = 1
print("Частота входження кожної літери:")
for letter, freq in freq_dict.items():
print(letter, ":", freq)
# Видалення тексту в круглих дужках
text = re.sub(r'\(.*?\)', '', text)
print("Текст без виразів в круглих дужках: ", text)
#include <iostream>
#include <cmath>
int main() {
double x;
std::cout << "Введите значение x: ";
std::cin >> x;
if (std::abs(x) > 1) {
double result = 0;
double term = 1;
double power = x;
int n = 1;
while (std::abs(term) > 0.000001) {
result += term;
power *= x * x;
n += 2;
term = (n % 4 == 1) ? (1 / (double)n) * power : (-1 / (double)n) * power;
}
double arctg_value = std::atan(x) + M_PI_2 - result;
std::cout << "Значение выражения arctg(.x +/- pi/2 - 1/x + 1/(3x^3) - 1/(5x^5) + 1/(7x^7) - ...) равно: " << arctg_value << std::endl;
} else {
std::cout << "|x| <= 1. Выражение не определено." << std::endl;
}
return 0;
}
Объяснение:
import re
text = input("Введіть текст: ")
# Підрахунок кількості слів з непарною довжиною
odd_words_count = sum(1 for word in re.findall(r'\b\w+\b', text) if len(word) % 2 != 0)
print("Кількість слів з непарною довжиною: ", odd_words_count)
# Розрахунок частоти входження кожної літери
freq_dict = {}
for letter in re.findall(r'[a-zA-Z]', text):
if letter in freq_dict:
freq_dict[letter] += 1
else:
freq_dict[letter] = 1
print("Частота входження кожної літери:")
for letter, freq in freq_dict.items():
print(letter, ":", freq)
# Видалення тексту в круглих дужках
text = re.sub(r'\(.*?\)', '', text)
print("Текст без виразів в круглих дужках: ", text)