Computer >> Máy Tính >  >> Lập trình >> C ++

Tính tổng của mảng sử dụng số học con trỏ trong C ++

Đây là một chương trình C ++ để tìm ra tổng các phần tử của mảng bằng cách sử dụng con trỏ.

Thuật toán

Begin
   Initialize the array elements with values from user input.
   Initialize s = 0
   Loop for i = 0 to
      s = s + *(ptr + i)
   Print the sum value in variable s.
End

Mã mẫu

#include<iostream>
using namespace std;
int main() {
   int a[7], i, s = 0;
   int *ptr;
   cout << "Enter the Numbers: ";
   for (i = 0; i < 7; i++) {
      cin >> a[i];
   }
   ptr = a;
   for (i = 0; i < 7; i++) {
      s = s + *(ptr + i);
   }
cout << "\nSum of Elements of Array: " << s;
}

Đầu ra

Enter the Numbers: 1 2 3 4 5 6 7
Sum of Elements of Array: 28