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

จะทำการคำนวณทางคณิตศาสตร์ในอาร์เรย์ในภาษา C ได้อย่างไร?


อาร์เรย์คือกลุ่มของรายการข้อมูลที่เกี่ยวข้องซึ่งจัดเก็บด้วยชื่อเดียว

ตัวอย่างเช่น นักเรียน int[30]; //student คือชื่ออาร์เรย์ที่เก็บชุดข้อมูล 30 ชุดโดยใช้ชื่อตัวแปรเดียว

การทำงานของอาร์เรย์

  • กำลังค้นหา − ใช้เพื่อค้นหาว่ามีองค์ประกอบเฉพาะหรือไม่

  • การเรียงลำดับ - ช่วยในการจัดเรียงองค์ประกอบในอาร์เรย์ไม่ว่าจะเป็นจากน้อยไปมากหรือจากมากไปน้อย

  • ขวาง − มันประมวลผลทุกองค์ประกอบในอาร์เรย์ตามลำดับ

  • กำลังแทรก - ช่วยในการแทรกองค์ประกอบในอาร์เรย์

  • กำลังลบ − ช่วยในการลบองค์ประกอบในอาร์เรย์

ตรรกะในการดำเนินการเลขคณิตทั้งหมดในอาร์เรย์มีดังนี้ -

for(i = 0; i < size; i ++){
   add [i]= A[i] + B[i];
   sub [i]= A[i] - B[i];
   mul [i]= A[i] * B[i];
   div [i] = A[i] / B[i];
   mod [i] = A[i] % B[i];
}

โปรแกรม

ต่อไปนี้เป็นโปรแกรม C สำหรับการคำนวณทางคณิตศาสตร์ในอาร์เรย์ -

#include<stdio.h>
int main(){
   int size, i, A[50], B[50];
   int add[10], sub[10], mul[10], mod[10];
   float div[10];
   printf("enter array size:\n");
   scanf("%d", &size);
   printf("enter elements of 1st array:\n");
   for(i = 0; i < size; i++){
      scanf("%d", &A[i]);
   }
   printf("enter the elements of 2nd array:\n");
   for(i = 0; i < size; i ++){
      scanf("%d", &B[i]);
   }
   for(i = 0; i < size; i ++){
      add [i]= A[i] + B[i];
      sub [i]= A[i] - B[i];
      mul [i]= A[i] * B[i];
      div [i] = A[i] / B[i];
      mod [i] = A[i] % B[i];
   }
   printf("\n add\t sub\t Mul\t Div\t Mod\n");
   printf("------------------------------------\n");
   for(i = 0; i <size; i++){
      printf("\n%d\t ", add[i]);
      printf("%d \t ", sub[i]);
      printf("%d \t ", mul[i]);
      printf("%.2f\t ", div[i]);
      printf("%d \t ", mod[i]);
   }
   return 0;
}

ผลลัพธ์

เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −

Run 1:
enter array size:
2
enter elements of 1st array:
23
45
enter the elements of 2nd array:
67
89
add    sub     Mul    Div    Mod
------------------------------------
90    -44     1541  0.00    23
134    -44    4005  0.00    45
Run 2:
enter array size:
4
enter elements of 1st array:
89
23
12
56
enter the elements of 2nd array:
2
4
7
8
add  sub Mul  Div   Mod
------------------------------------
91  87  178   44.00  1
27  19  92    5.00   3
19  5   84    1.00    5
64  48  448   7.00    0