सी++ वॉकथ्रू

सी++ होम सी++ परिचय सी++ प्रारंभ करें सी++ सिंटेक्स सी++ आउटपुट सी++ टिप्पणियाँ सी++ चर सी ++ उपयोगकर्ता इनपुट सी++ डेटा प्रकार सी++ ऑपरेटर्स सी++ स्ट्रिंग्स सी++ गणित सी++ बूलियन सी++ शर्तें सी++ स्विच सी++ जबकि लूप सी++ लूप के लिए सी++ ब्रेक/जारी रखें सी ++ सरणी सी++ संदर्भ सी++ पॉइंटर्स

सी++ फंक्शन

सी++ फंक्शन सी++ फंक्शन पैरामीटर्स सी++ फंक्शन ओवरलोडिंग

सी++ क्लासेस

सी++ ओओपी सी++ क्लासेस/ऑब्जेक्ट्स सी++ क्लास मेथड्स सी++ कंस्ट्रक्टर्स सी++ एक्सेस स्पेसिफायर्स सी++ एनकैप्सुलेशन सी ++ वंशानुक्रम सी++ बहुरूपता सी++ फ़ाइलें सी++ अपवाद

सी++ कैसे करें

दो नंबर जोड़ें

सी++ उदाहरण

सी++ उदाहरण सी++ कंपाइलर सी++ एक्सरसाइज सी++ प्रश्नोत्तरी


सी++ गणित


सी++ गणित

C++ में कई कार्य हैं जो आपको संख्याओं पर गणितीय कार्य करने की अनुमति देते हैं।


अधिकतम और न्यूनतम

फ़ंक्शन का उपयोग x और y के उच्चतम मान को खोजने के लिए किया जा सकता है :max(x,y)

उदाहरण

cout << max(5, 10);

और फ़ंक्शन का उपयोग x और y के निम्नतम मान को खोजने के लिए किया जा सकता है :min(x,y)

उदाहरण

cout << min(5, 10);

सी++ <cmath> हैडर

अन्य कार्य, जैसे sqrt(वर्गमूल), round(एक संख्या के चारों ओर) और (प्राकृतिक लघुगणक), हेडर फ़ाइल log में पाए जा सकते हैं :<cmath>

उदाहरण

// Include the cmath library
#include <cmath>

cout << sqrt(64);
cout << round(2.6);
cout << log(2);

अन्य गणित कार्य

अन्य लोकप्रिय गणित कार्यों की सूची ( <cmath>पुस्तकालय से) नीचे दी गई तालिका में पाई जा सकती है:

Function Description
abs(x) Returns the absolute value of x
acos(x) Returns the arccosine of x
asin(x) Returns the arcsine of x
atan(x) Returns the arctangent of x
cbrt(x) Returns the cube root of x
ceil(x) Returns the value of x rounded up to its nearest integer
cos(x) Returns the cosine of x
cosh(x) Returns the hyperbolic cosine of x
exp(x) Returns the value of Ex
expm1(x) Returns ex -1
fabs(x) Returns the absolute value of a floating x
fdim(x, y) Returns the positive difference between x and y
floor(x) Returns the value of x rounded down to its nearest integer
hypot(x, y) Returns sqrt(x2 +y2) without intermediate overflow or underflow
fma(x, y, z) Returns x*y+z without losing precision
fmax(x, y) Returns the highest value of a floating x and y
fmin(x, y) Returns the lowest value of a floating x and y
fmod(x, y) Returns the floating point remainder of x/y
pow(x, y) Returns the value of x to the power of y
sin(x) Returns the sine of x (x is in radians)
sinh(x) Returns the hyperbolic sine of a double value
tan(x) Returns the tangent of an angle
tanh(x) Returns the hyperbolic tangent of a double value

सी++ एक्सरसाइज

व्यायाम के साथ खुद को परखें

व्यायाम:

xऔर के उच्चतम मान को प्रिंट करने के लिए सही फ़ंक्शन का उपयोग करें y

int x = 5;
int y = 10;
cout << (x, y);