Project

Profile

Help

HostedRedmine.com has moved to the Planio platform. All logins and passwords remained the same. All users will be able to login and use Redmine just as before. Read more...

ค้นหา % ที่เพิ่มขึ้น หรือ ลดลง ระหว่าง2ตัวเลข

Technical documentation
2016-06-22

ค้นหา % ที่เพิ่มขึ้น หรือ ลดลง ระหว่าง2ตัวเลข
ใส่ตัวเลข 2 ตัวเลขลงไปเพื่อที่จะค้นหาว่า การเพิ่มขึ้นหรือลดลงเป็นกี่%
เช่น 1,000 ถึง 2,000 กดคำนวณ คำตอบคือ 100%
หรือ
10 ถึง 5 คำตอบคือ100%

ตัวอย่างการใช้เครื่องช่วยคำนวณ : ยอดขายเพิ่มขึ้นจาก 1,00,000 เป็น 2,000,000 อยากรู้ว่าเพิ่มกี่% กดปุ่มคำนวณได้เลย
หรือ ยอดขายลดลงจาก 5,000,000 เหลือ 1,000,000 คิดเป็นกี่%

function calc4(form) {
var num1 = form.num1.value;
var num2 = form.num2.value;
return ((num2 - num1) / num1 * 100 + "%");
}

7.33 ลดลงเหลือ 4 เป็นกี่ % = 4-7.33/7.33*100 = 45.43

http://calculator.teenee.com/percentage.html

Files