इस लेख में हम C++ STL में काम करने, वाक्य रचना और मानदंड () फ़ंक्शन के उदाहरणों पर चर्चा करेंगे।
मानक क्या है ()?
मानदंड () फ़ंक्शन C++ STL में एक इनबिल्ट फ़ंक्शन है, जिसे
एक सम्मिश्र संख्या का सामान्य मान किसी संख्या का वर्ग परिमाण होता है। तो सरल शब्दों में फ़ंक्शन किसी सम्मिश्र संख्या का वर्ग परिमाण ज्ञात करता है, जिसमें उसकी काल्पनिक और वास्तविक संख्या भी शामिल है।
सिंटैक्स
double norm(ArithmeticType num);
पैरामीटर
फ़ंक्शन निम्नलिखित पैरामीटर को स्वीकार करता है -
- संख्या - वह जटिल मूल्य जिस पर हम काम करना चाहते हैं।
रिटर्न वैल्यू
यह फ़ंक्शन संख्या का मानक मान देता है।
उदाहरण
इनपुट
complex<double> comp_num(6.9, 2.6); norm(comp_num);
आउटपुट
The value of norm of (6.9,2.6) is 54.37
उदाहरण
#include <bits/stdc++.h> using namespace std; int main (){ complex<double> comp_num(6.9, 2.6); cout<<"The value of norm of " << comp_num<< " is "; cout << norm(comp_num) << endl; return 0; }
आउटपुट
The value of norm of (6.9,2.6) is 54.37
उदाहरण
#include <bits/stdc++.h> using namespace std; int main (){ complex<double> comp_num(2.4, 1.9); cout<<"The value of norm of " << comp_num<< " is "; cout << norm(comp_num) << endl; return 0; }
उदाहरण
The value of norm of (2.4,1.9) is 9.37