ปัญหา
คำนวณผลรวมขององค์ประกอบทั้งหมดของอาร์เรย์สองมิติโดยใช้การเริ่มต้นรันไทม์
วิธีแก้ปัญหา
อาร์เรย์สองมิติใช้ในสถานการณ์ที่ต้องเก็บตารางค่า (หรือ) ในแอปพลิเคชันเมทริกซ์
ไวยากรณ์มีดังนี้ −
datatype array_ name [rowsize] [column size];
ตัวอย่างเช่น int a[4] [4];
จำนวนองค์ประกอบในอาร์เรย์ =ขนาดแถว *ขนาดคอลัมน์ =4*4 =16
ตัวอย่าง
ต่อไปนี้เป็นโปรแกรม C เพื่อคำนวณผลรวมขององค์ประกอบทั้งหมดของอาร์เรย์สองมิติโดยใช้การเริ่มต้นรันไทม์ -
#include<stdio.h> void main(){ //Declaring array and variables// int A[4][3],i,j,even=0,odd=0; //Reading elements into the array// printf("Enter elements into the array A :\n"); for(i=0;i<4;i++){ for(j=0;j<3;j++){ printf("A[%d][%d] : ",i,j); scanf("%d",&A[i][j]); } } //Calculating sum of even and odd elements within the array using for loop// for(i=0;i<4;i++){ for(j=0;j<3;j++){ if((A[i][j])%2==0){ even = even+A[i][j]; } else{ odd = odd+A[i][j]; } } } printf("Sum of even elements in array A is : %d\n",even); printf("Sum of odd elements in array A is : %d",odd); }
ผลลัพธ์
เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −
Enter elements into the array A: A[0][0] : 01 A[0][1] : 02 A[0][2] : 03 A[1][0] : 04 A[1][1] : 10 A[1][2] : 20 A[2][0] : 30 A[2][1] : 40 A[2][2] : 22 A[3][0] : 33 A[3][1] : 44 A[3][2] : 55 Sum of even elements in array A is: 172 Sum of odd elements in array A is: 92