Tasks studies - laboratory
Discuss two types of loops in C++. Provide an example of program code using one of them.
Describe the operation of the following function:
double functionnowa(double a, double b, unsigned n)
{
double variable1;
if(b==1)
return n*a;
else
{
variable1=a*(1-pow(b,n))/(1-b);
return variable1;
}
}
What value will it return when we call it with arguments (2,3,4).
Write a program code that calculates the arithmetic mean of two integers provided by the user.
The user provides three real numbers a, b, c, which are the lengths of the sides of a triangle. Write a program that checks whether this triangle is right-angled.
The user enters a natural number n that is a dimension of the R^n space, and then two vectors in this space. Write the program code that will save these vectors in arrays and calculate their scalar product.
Write the program code that will print all the divisors of the natural number entered by the user.