Programming-Cpp

Tasks studies - laboratory


Project maintained by dawidolko Hosted on GitHub Pages — Theme by dawidolko

Colloquium 3

Task 1.

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}

Task 2.

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 3.

Task with operations on integers: prime, composite, Pythagorean, twin numbers, etc.

Task 4.

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.

Task 5.

Write a program that calculates the nth term of a given sequence in a recursive manner. Use a function for this.

Task 6.

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.