C ++เกมส์

C++ HOME บทนำ 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++ Polymorphism ไฟล์ 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);