Write a recursive real-valued function Fact(N) that returns the value of N-factorial:N! = 1·2·…·N,where N (> 0) is an integer parameter. Using this function, output factorials of five given integers.
Описать рекурсивную функцию Fact(N) вещественного типа, вычисляющую значение факториалаN! = 1·2·…·N(N > 0 — параметр целого типа). С помощью этой функции вычислить факториалы пяти данных чисел.
Write a recursive real-valued function Fact2(N) that returns the value of double factorial of N:N!! = N·(N−2)·(N−4)·…,where N (> 0) is an integer parameter; the last factor of the product equals 2 if N is an even number, and 1 otherwise. Using this function, output double factorials of five given integers.
Описать рекурсивную функцию Fact2(N) вещественного типа, вычисляющую значение двойного факториалаN!! = N·(N−2)·(N−4)·…(N > 0 — параметр целого типа; последний сомножитель в произведении равен 2, если N — четное число, и 1, если N — нечетное). С помощью этой функции вычислить двойные факториалы пяти данных чисел.
Write a recursive real-valued function PowerN(X, N) that returns the power XN (X ≠ 0 is a real number, N is an integer) calculated as follows: X 0 = 1,
X N = (X N div 2)2 if N is a positive even number,
X N = X·X N−1 if N is a positive odd number,
X N = 1/X −N if N < 0,where "div" denotes the operator of integer division. Using this function, output powers XN for a given real number X and five given integers N.
Описать рекурсивную функцию PowerN(X, N) вещественного типа, находящую значение N-й степени числа X по формулам: X 0 = 1,
X N = (X N/2)2 при четных N > 0, X N = X·X N−1 при нечетных N > 0,
X N = 1/X −N при N < 0(X ≠ 0 — вещественное число, N — целое; в формуле для четных N должна использоваться операция целочисленного деления). С помощью этой функции найти значения X N для данного X при пяти данных значениях N.
Write a recursive integer function Fib1(N) that returns the Fibonacci number FN (N is a positive integer). The Fibonacci numbers FK are defined as: F1 = F2 = 1, FK = FK−2 + FK−1, K = 3, 4, … .Using the function Fib1, find the Fibonacci numbers FN for five given integers N; output the value of each Fibonacci number and also the amount of the recursive function calls, which are required for its calculation.
Описать рекурсивную функцию Fib1(N) целого типа, вычисляющую N-й элемент последовательности чисел Фибоначчи (N — целое число): F1 = F2 = 1, FK = FK−2 + FK−1, K = 3, 4, … .С помощью этой функции найти пять чисел Фибоначчи с данными номерами, и вывести эти числа вместе с количеством рекурсивных вызовов функции Fib1, потребовавшихся для их нахождения.
Write a recursive integer function Fib2(N) that returns the Fibonacci number FN (N is a positive integer). The Fibonacci numbers FK are defined as: F1 = F2 = 1, FK = FK−2 + FK−1, K = 3, 4, … .The integer N is assumed to be not greater than 20. Decrease the amount of recursive calls of the function Fib2 (in comparison with the Fib1 function from the task Recur4) by means of using an additional array of integers that should store the Fibonacci numbers having been calculated. Using the Fib2 function, output the Fibonacci numbers FN for five given integers N.
Описать рекурсивную функцию Fib2(N) целого типа, вычисляющую N-й элемент последовательности чисел Фибоначчи (N — целое число): F1 = F2 = 1, FK = FK−2 + FK−1, K = 3, 4, … .Считать, что номер N не превосходит 20. Для уменьшения количества рекурсивных вызовов по сравнению с функцией Fib1 (см. задание Recur4) создать вспомогательный массив для хранения уже вычисленных чисел Фибоначчи и обращаться к нему при выполнении функции Fib2. С помощью функции Fib2 найти пять чисел Фибоначчи с данными номерами.
Write a recursive integer function Combin1(N, K) that returns C(N, K) (the number of combinations of N objects taken K at a time) using the following recursive relations (N and K are integers, N > 0, 0 ≤ K ≤ N): C(N, 0) = C(N, N) = 1,
C(N, K) = C(N − 1, K) + C(N − 1, K − 1) if 0 < K < N.Using the function Combin1, find the numbers C(N, K) for a given integer N and five given integers K; output the value of each number and also the amount of the recursive function calls, which are required for its calculation.
Описать рекурсивную функцию Combin1(N, K) целого типа, находящую C(N, K) — число сочетаний из N элементов по K — с помощью рекуррентного соотношения: C(N, 0) = C(N, N) = 1,
C(N, K) = C(N − 1, K) + C(N − 1, K − 1) при 0 < K < N.Параметры функции — целые числа; N > 0, 0 ≤ K ≤ N. Дано число N и пять различных значений K. Вывести числа C(N, K) вместе с количеством рекурсивных вызовов функции Combin1, потребовавшихся для их нахождения.
Write a recursive integer function Combin2(N, K) that returns C(N, K) (the number of combinations of N objects taken K at a time) using the following recursive relations (N and K are integers, N > 0, 0 ≤ K ≤ N): C(N, 0) = C(N, N) = 1,
C(N, K) = C(N − 1, K) + C(N − 1, K − 1) if 0 < K < N.The integer N is assumed to be not greater than 20. Decrease the amount of recursive calls of the function Combin2 (in comparison with the Combin1 function from the task Recur6) by means of using an additional two-dimensional array of integers that should store the numbers C(N, K) having been calculated. Using the Combin2 function, output the numbers C(N, K) for a given integer N and five given integers K.
Описать рекурсивную функцию Combin2(N, K) целого типа, находящую C(N, K) — число сочетаний из N элементов по K — с помощью рекуррентного соотношения: C(N, 0) = C(N, N) = 1,
C(N, K) = C(N − 1, K) + C(N − 1, K − 1) при 0 < K < N.Параметры функции — целые числа; N > 0, 0 ≤ K ≤ N. Считать, что параметр N не превосходит 20. Для уменьшения количества рекурсивных вызовов по сравнению с функцией Combin1 (см. задание Recur6) описать вспомогательный двумерный массив для хранения уже вычисленных чисел C(N, K) и обращаться к нему при выполнении функции Combin2. С помощью функции Combin2 найти числа C(N, K) для данного значения N и пяти различных значений K.
Write a recursive real-valued function RootK(X, K, N) that returns an approximate value of a K-th root of X using the following formulas: Y0 = 1, YN+1 = YN − (YN − X/(YN)K−1)/K,where X (> 0) is a real number, K (> 1), N (> 0) are integers, YN denotes RootK(X, K, N) for a fixed values of X and K. Using this function, output approximate values of a K-th root of X for a given X, K and six integers N.
Описать рекурсивную функцию RootK(X, K, N) вещественного типа, находящую приближенное значение корня K-й степени из числа X по формуле: Y0 = 1, YN+1 = YN − (YN − X/(YN)K−1)/K,где YN обозначает RootK(X, K, N) при фиксированных X и K. Параметры функции: X (> 0) — вещественное число, K (> 1) и N (> 0) — целые. С помощью функции RootK найти для данного числа X приближенные значения его корня K-й степени при шести данных значениях N.
Write a recursive integer function GCD(A, B) that returns the greatest common divisor of two positive integers A and B. Use the Euclidean algorithm: GCD(A, B) = GCD(B, A mod B), if B ≠ 0; GCD(A, 0) = A,where "mod" denotes the operator of taking the remainder after integer division. Using this function, find the greatest common divisor for each of pairs (A, B), (A, C), (A, D) provided that integers A, B, C, D are given.
Описать рекурсивную функцию GCD(A, B) целого типа, находящую наибольший общий делитель (НОД, greatest common divisor) двух целых положительных чисел A и B, используя алгоритм Евклида: НОД(A, B) = НОД(B, A mod B), B ≠ 0; НОД(A, 0) = A,где «mod» обозначает операцию взятия остатка от деления. С помощью этой функции найти НОД(A, B), НОД(A, C), НОД(A, D), если даны числа A, B, C, D.
Write a recursive integer function DigitSum(K) that returns the sum of digits of an integer K (the loop statements should not be used). Using this function, output the sum of digits for each of five given integers.
Описать рекурсивную функцию DigitSum(K) целого типа, которая находит сумму цифр целого числа K, не используя оператор цикла. С помощью этой функции найти суммы цифр для пяти данных целых чисел.
Write a recursive integer function MaxElem(A, N) that returns the maximal element of an array A of N integers (1 ≤ N ≤ 10; the loop statements should not be used). Using this function, output the maximal elements of three given arrays A, B, C whose sizes are NA, NB, NC respectively.
Описать рекурсивную функцию MaxElem(A, N) целого типа, которая находит максимальный элемент целочисленного массива A размера N (1 ≤ N ≤ 10), не используя оператор цикла. С помощью этой функции найти максимальные элементы массивов A, B, C размера NA, NB, NC соответственно.
Write a recursive integer function DigitCount(S) that returns the amount of digit characters in a string S (the loop statements should not be used). Using this function, output the amount of digit characters for each of five given strings.
Описать рекурсивную функцию DigitCount(S) целого типа, которая находит количество цифр в строке S, не используя оператор цикла. С помощью этой функции найти количество цифр в каждой из пяти данных строк.
Write a recursive logical function Palindrome(S) that returns true if a string S is a palindrome (i. e., it is read equally both from left to right and from right to left), and false otherwise; the loop statements should not be used. Output return values of this function for five given string parameters.
Описать рекурсивную функцию Palindrome(S) логического типа, возвращающую true, если строка S является палиндромом (т. е. читается одинаково слева направо и справа налево), и false в противном случае. Оператор цикла в теле функции не использовать. Вывести значения функции Palindrome для пяти данных строк.
Given a string S that represents a correct expression of integer type, output the value of this expression. The expression is defined as follows:
<expression> | ::= | <digit> | <expression> + <digit> | |
<expression> − <digit> |
Вывести значение целочисленного выражения, заданного в виде строки S. Выражение определяется следующим образом:
<выражение> | ::= | <цифра> | <выражение> + <цифра> | |
<выражение> − <цифра> |
Given a string S that represents a correct expression of integer type, output the value of this expression. The expression is defined as follows:
<expression> | ::= | <term> | <expression> + <term> | |
<expression> − <term> | ||
<term> | ::= | <digit> | <term> * <digit> |
Вывести значение целочисленного выражения, заданного в виде строки S. Выражение определяется следующим образом:
<выражение> | ::= | <терм> | <выражение> + <терм> | |
<выражение> − <терм> | ||
<терм> | ::= | <цифра> | <терм> * <цифра> |
Given a string S that represents a correct expression of integer type, output the value of this expression. The expression is defined as follows:
<expression> | ::= | <term> | <expression> + <term> | |
<expression> − <term> | ||
<term> | ::= | <element> | <term> * <element> |
<element> | ::= | <digit> | (<expression>) |
Вывести значение целочисленного выражения, заданного в виде строки S. Выражение определяется следующим образом:
<выражение> | ::= | <терм> | <выражение> + <терм> | |
<выражение> − <терм> | ||
<терм> | ::= | <элемент> | <терм> * <элемент> |
<элемент> | ::= | <цифра> | (<выражение>) |
Given a string S that represents a correct expression of integer type, output the value of this expression. The expression is defined as follows:
<expression> | ::= | <digit> | |
(<expression><operator><expression>) | ||
<operator> | ::= | + | − | * |
Вывести значение целочисленного выражения, заданного в виде строки S. Выражение определяется следующим образом:
<выражение> | ::= | <цифра> | |
(<выражение><знак><выражение>) | ||
<знак> | ::= | + | − | * |
A nonempty string S that represents an expression of integer type is given (see the expression definition in Recur17). Output true if the given expression is a correct one, otherwise output false.
Проверить правильность выражения, заданного в виде непустой строки S (выражение определяется по тем же правилам, что и в задании Recur17). Если выражение составлено правильно, то вывести true, иначе вывести false.
A nonempty string S that represents an expression of integer type is given (see the expression definition in Recur17). Output 0 if the given expression is a correct one, otherwise output the order number of its first character that is invalid, superfluous or missing.
Проверить правильность выражения, заданного в виде непустой строки S (выражение определяется по тем же правилам, что и в задании Recur17). Если выражение составлено правильно, то вывести 0, в противном случае вывести номер первого ошибочного, лишнего или недостающего символа в строке S.
Given a string S that represents a correct expression of integer type, output the value of this expression. The expression is defined as follows (functions M and m return their maximal and minimal argument respectively):
<expression> | ::= | <digit> | M(<expression> , <expression>) | |
m(<expression> , <expression>) |
Вывести значение целочисленного выражения, заданного в виде строки S. Выражение определяется следующим образом (функция M возвращает максимальный из своих параметров, а функция m — минимальный):
<выражение> | ::= | <цифра> | M(<выражение> , <выражение>) | |
m(<выражение> , <выражение>) |
Given a string S that represents a correct expression of logical type, output the value of this expression. The expression is defined as follows ("T" means true, "F" means false):
<expression> | ::= | T | F | And(<expression> , <expression>) | |
Or(<expression> , <expression>) |
Вывести значение логического выражения, заданного в виде строки S. Выражение определяется следующим образом («T» — true, «F» — false):
<выражение> | ::= | T | F | And(<выражение> , <выражение>) | |
Or(<выражение> , <выражение>) |
Given a string S that represents a correct expression of integer type, output the value of this expression. The expression is defined as follows (functions M and m return their maximal and minimal argument respectively):
<expression> | ::= | <digit> | M(<arguments>) | m(<arguments>) |
<arguments> | ::= | <expression> | <expression> , <arguments> |
Вывести значение целочисленного выражения, заданного в виде строки S. Выражение определяется следующим образом (функция M возвращает максимальный из своих параметров, а функция m — минимальный):
<выражение> | ::= | <цифра> | M(<параметры>) | m(<параметры>) |
<параметры> | ::= | <выражение> | <выражение> , <параметры> |
Given a string S that represents a correct expression of logical type, output the value of this expression. The expression is defined as follows ("T" means true, "F" means false):
<expression> | ::= | T | F | And(<arguments>) | Or(<arguments>) |
<arguments> | ::= | <expression> | <expression> , <arguments> |
Вывести значение логического выражения, заданного в виде строки S. Выражение определяется следующим образом («T» — true, «F» — false):
<выражение> | ::= | T | F | And(<параметры>) | Or(<параметры>) |
<параметры> | ::= | <выражение> | <выражение> , <параметры> |
Given a string S that represents a correct expression of logical type, output the value of this expression. The expression is defined as follows ("T" means true, "F" means false):
<expression> | ::= | T | F | And(<arguments>) | |
Or(<arguments>) | Not(<expression>) | ||
<arguments> | ::= | <expression> | <expression> , <arguments> |
Вывести значение логического выражения, заданного в виде строки S. Выражение определяется следующим образом («T» — true, «F» — false):
<выражение> | ::= | T | F | And(<параметры>) | |
Or(<параметры>) | Not(<выражение>) | ||
<параметры> | ::= | <выражение> | <выражение> , <параметры> |