Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

โปรแกรม C สำหรับผลิตภัณฑ์ของอาร์เรย์


เมื่อกำหนดอาร์เรย์ arr[n] ของจำนวน n องค์ประกอบ ภารกิจคือค้นหาผลคูณขององค์ประกอบทั้งหมดของอาร์เรย์นั้น

เหมือนกับว่าเรามีอาร์เรย์ arr[7] ของ 7 องค์ประกอบ ดังนั้นผลคูณของมันจะเหมือน

โปรแกรม C สำหรับผลิตภัณฑ์ของอาร์เรย์

ตัวอย่าง

Input: arr[] = { 10, 20, 3, 4, 8 }
Output: 19200
Explanation: 10 x 20 x 3 x 4 x 8 = 19200
Input: arr[] = { 1, 2, 3, 4, 3, 2, 1 }
Output: 144

แนวทางที่ใช้ด้านล่างมีดังนี้

  • รับอินพุตอาร์เรย์
  • หาขนาดของมัน
  • วนซ้ำอาร์เรย์และคูณแต่ละองค์ประกอบของอาร์เรย์นั้น
  • แสดงผล

อัลกอริทึม

Start
In function int prod_mat(int arr[], int n)
   Step 1-> Declare and initialize result = 1
   Step 2-> Loop for i = 0 and i < n and i++
      result = result * arr[i];
   Step 3-> Return result
int main()
   Step 1-> Declare an array arr[]
   step 2-> Declare a variable for size of array
   Step 3-> Print the result

ตัวอย่าง

#include <stdio.h>
int prod_arr(int arr[], int n) {
   int result = 1;
   //Wil multiply each element and store it in result
   for (int i = 0; i < n; i++)
   result = result * arr[i];
   return result;
}
int main() {
   int arr[] = { 10, 20, 3, 4, 8 };
   int n = sizeof(arr) / sizeof(arr[0]);
   printf("%d", prod_arr(arr, n));
   return 0;
}

ผลลัพธ์

หากรันโค้ดด้านบน มันจะสร้างผลลัพธ์ต่อไปนี้ -

19200