n the Arduino Uno (and other ATMega based boards) an int stores a 16-bit (2-byte) value. This yields a range of -32,768 to 32,767 (minimum value of -2^15 and a maximum value of (2^15) - 1).
On the Arduino Due, an int stores a 32-bit (4-byte) value. This yields a range of -2,147,483,648 to 2,147,483,647 (minimum value of -2^31 and a maximum value of (2^31) - 1).
n โนสืบ (และ ATMega ตามบอร์ดอื่น ๆ) int มีค่า 16 บิต (2 ไบต์) ที่จัดเก็บ นี้ทำให้ช่วงของ-32,768 กับ 32,767 (ค่าต่ำสุดของ -2 ^ 15 และค่าสูงสุดของ (2 ^ 15) - 1) บนสืบ int การเก็บค่า 32 บิต (4 ไบต์) นี้ทำให้ช่วงของ-2,147,483,648 กับ 2,147,483,647 (ค่าต่ำสุดของ -2 ^ 31 และค่าสูงสุดของ (2 ^ 31) - 1)
การแปล กรุณารอสักครู่..
