C++ လမ်းညွှန်ချက်

C++ ပင်မ C++ မိတ်ဆက် C++ ကို စတင်လိုက်ပါ။ C++ Syntax C++ အထွက် C++ မှတ်ချက်များ C++ ကိန်းရှင်များ C++ အသုံးပြုသူ ထည့်သွင်းမှု C++ ဒေတာအမျိုးအစားများ C++ အော်ပရေတာများ C++ ကြိုးများ C++ သင်္ချာ C++ Booleans C++ အခြေအနေများ C++ ခလုတ် C++ while Loop Loop အတွက် C++ C++ Break/Continue C++ Arrays C++ ကိုးကားချက်များ C++ ညွှန်ပြချက်များ

C++ လုပ်ဆောင်ချက်များ

C++ လုပ်ဆောင်ချက်များ C++ လုပ်ဆောင်ချက် ကန့်သတ်ချက်များ C++ လုပ်ဆောင်ချက် လွန်ကဲခြင်း။

C++ အတန်းများ

C++ OOP C++ အတန်းများ/အရာဝတ္ထုများ C++ အတန်းအစားနည်းလမ်းများ C++ တည်ဆောက်သူများ C++ Access Specifiers C++ Encapsulation C++ အမွေအနှစ် C++ Polymorphism C++ ဖိုင်များ C++ ခြွင်းချက်

C++ လုပ်နည်း

နံပါတ်နှစ်ခုထည့်ပါ။

C++ ဥပမာများ

C++ ဥပမာများ C++ Compiler C++ လေ့ကျင့်ခန်းများ C++ Quiz


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);