นำจำนวนเต็มสองตัวจากผู้ใช้มาเป็นฐานและเลขชี้กำลัง แล้วคำนวณกำลังตามที่อธิบายไว้ด้านล่าง
ตัวอย่าง
พิจารณาสิ่งต่อไปนี้สำหรับการเขียนโปรแกรม C
- สมมติฐาน =3
- เลขชี้กำลัง =4
- กำลัง=3*3*3*3
อัลกอริทึม
ปฏิบัติตามอัลกอริทึมที่ระบุด้านล่าง -
Step 1: Declare int and long variables. Step 2: Enter base value through console. Step 3: Enter exponent value through console. Step 4: While loop. Exponent !=0 i. Value *=base ii. –exponent Step 5: Print the result.
ตัวอย่าง
โปรแกรมต่อไปนี้จะอธิบายวิธีการคำนวณกำลังของตัวเลขที่กำหนดในภาษา C
#include<stdio.h> int main(){ int base, exponent; long value = 1; printf("Enter a base value:\n "); scanf("%d", &base); printf("Enter an exponent value: "); scanf("%d", &exponent); while (exponent != 0){ value *= base; --exponent; } printf("result = %ld", value); return 0; }
ผลลัพธ์
เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −
Run 1: Enter a base value: 5 Enter an exponent value: 4 result = 625 Run 2: Enter a base value: 8 Enter an exponent value: 3 result = 512
ตัวอย่าง
หากเราต้องการหากำลังของจำนวนจริง เราสามารถใช้ฟังก์ชัน pow ซึ่งเป็นฟังก์ชันที่กำหนดไว้ล่วงหน้าใน math.h.
#include<math.h> #include<stdio.h> int main() { double base, exponent, value; printf("Enter a base value: "); scanf("%lf", &base); printf("Enter an exponent value: "); scanf("%lf", &exponent); // calculates the power value = pow(base, exponent); printf("%.1lf^%.1lf = %.2lf", base, exponent, value); return 0; }
ผลลัพธ์
เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −
Enter a base value: 3.4 Enter an exponent value: 2.3 3.4^2.3 = 16.69