इस लेख में, हम C++ में काम करने, वाक्य रचना और इमेज () फ़ंक्शन के उदाहरणों पर चर्चा करेंगे।
इमेग क्या है ()?
imag() फंक्शन C++ STL में एक इनबिल्ट फंक्शन है, जिसे
सम्मिश्र संख्या वह संख्या होती है जो वास्तविक संख्या और काल्पनिक संख्या के मेल से बनती है। वास्तविक संख्याएं अनंत और काल्पनिक संख्याओं को छोड़कर कोई भी संख्या होती हैं।
काल्पनिक संख्याएँ वे संख्याएँ होती हैं जिनका वर्ग एक ऋणात्मक संख्या होती है। फ़ंक्शन काल्पनिक भाग को लौटाता है, वह काल्पनिक भाग जो वह कारक है जिससे काल्पनिक इकाई को गुणा किया जाता है।
सिंटैक्स
Template <class T> T imag(const complex<T>& num);
पैरामीटर
फ़ंक्शन निम्नलिखित पैरामीटर को स्वीकार करता है -
-
संख्या - यह दी गई सम्मिश्र संख्या है।
रिटर्न वैल्यू
यह फ़ंक्शन संख्या का काल्पनिक भाग लौटाता है।
इनपुट
complex<double> img(2.2,3.4); imag(img);
आउटपुट
3.4
उदाहरण
#include <bits/stdc++.h> using namespace std; int main(){ //complex number = (a + ib) complex<double> img(2.2,3.4); cout<<"The complex number is: "<<img; cout<<"\nThe Imaginary part of the complex number is: "<<imag(img) << endl; return 0; }
आउटपुट
यदि हम उपरोक्त कोड चलाते हैं तो यह निम्न आउटपुट उत्पन्न करेगा -
The complex number is: (2.2,3.4) The Imaginary part of the complex number is: 3.4
उदाहरण
#include <bits/stdc++.h> using namespace std; int main(){ //complex number = (a + ib) complex<double> img(32,12); cout<<"The complex number is: "<<img; cout<<"\nThe Imaginary part of the complex number is: "<<imag(img) << endl; return 0; }
आउटपुट
यदि हम उपरोक्त कोड चलाते हैं तो यह निम्न आउटपुट उत्पन्न करेगा -
The complex number is: (32,12) The Imaginary part of the complex number is: 12