Функция abs () для комплексного числа в c ++
Опубликовано: 9 Марта, 2022
Функция abs () для комплексного числа определена в файле комплексного заголовка. Эта функция используется для возврата абсолютного значения комплексного числа z.
Синтаксис:
шаблон <класс T> T абс (константный комплекс <T> & z);
Параметр:
- z: представляет данное комплексное число.
Возврат: возвращает абсолютное значение комплексного числа.
Нижеприведенные программы иллюстрируют вышеуказанную функцию: -
Example 1:-
// C++ program to demonstrate // example of abs() function. #include <bits/stdc++.h> using namespace std; // driver function int main () { // defines the complex number: (5.0+12.0i) complex< double > complexnumber (5.0, 12.0); // prints the absolute value of the complex number cout << "The absolute value of " << complexnumber << " is: " ; cout << abs (complexnumber) << endl; return 0; } |
Output:
The absolute value of (5,12) is: 13
Example 2:-
// C++ program to demonstrate // example of abs() function. #include <bits/stdc++.h> using namespace std; // driver function int main () { // defines the complex number: (4.0+3.0i) complex< double > complexnumber (4.0, 3.0); // prints the absolute value of the complex number cout << "The absolute value of " << complexnumber << " is: " ; cout << abs (complexnumber) << endl; return 0; } |
Output:
The absolute value of (4,3) is: 5
Want to learn from the best curated videos and practice problems, check out the C++ Foundation Course for Basic to Advanced C++ and C++ STL Course for the language and STL. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.