تجول C ++

C ++ الصفحة الرئيسية C ++ مقدمة C ++ ابدأ بناء جملة C ++ إخراج C ++ تعليقات C ++ متغيرات C ++ مدخلات مستخدم C ++ أنواع بيانات C ++ عوامل C ++ سلاسل C ++ C ++ الرياضيات C ++ منطقية شروط C ++ مفتاح C ++ C ++ أثناء التكرار C ++ للحلقة C ++ استراحة / متابعة صفائف C ++ مراجع C ++ مؤشرات C ++

وظائف C ++

وظائف C ++ معلمات وظيفة C ++ وظيفة C ++ الزائد

فئات C ++

C ++ OOP فئات / كائنات C ++ طرق فئة C ++ C ++ البناة محددات الوصول C ++ تغليف C ++ الوراثة C ++ تعدد الأشكال C ++ ملفات C ++ استثناءات C ++

C ++ كيف

أضف عددين

أمثلة C ++

أمثلة C ++ مترجم C ++ تمارين C ++ اختبار C ++


C ++ الرياضيات


C ++ الرياضيات

يحتوي C ++ على العديد من الوظائف التي تتيح لك أداء المهام الرياضية على الأرقام.


ماكس ودقيقة

يمكن استخدام الدالة لإيجاد أعلى قيمة لـ x و y :max(x,y)

مثال

cout << max(5, 10);

ويمكن استخدام الدالة لإيجاد أدنى قيمة لـ x و y :min(x,y)

مثال

cout << min(5, 10);

رأس C ++ <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

تمارين C ++

اختبر نفسك مع التمارين

ممارسه الرياضه:

استخدم الوظيفة الصحيحة لطباعة أعلى قيمة لـ xو y.

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