Tasks studies - laboratory
Write a program that calculates the n-th term of a sequence given recursively. You should use the function for this. For example.
𝑎𝑛 =
{5 𝑔𝑑𝑦 𝑛 = 1
2𝑎𝑛−1 + 3 apart from that}
Operations on arrays, entering data into an array and performing operations on
array elements. For example.
Write a program code that will enter n real elements into an array and calculate their
average. The number n and the elements to be entered are provided by the user.
Task with operations on integers: prime, composite, Pythagorean, twin numbers, etc.
Other tasks. For example, write a program code that, after entering a real number, returns a number with the same absolute value, but with the opposite sign.
Write a program that calculates the nth term of a given sequence in a recursive manner. Use a function for this.
Write a program code that enters n real elements into an array and calculates their average. The number n and the elements to be entered are provided by the user.