สอนเขียนภาษา C++ หาผลรวมจากตัวแปรชนิด Array ด้วยคำสั่ง accumulate โดยคำสั่งนี้ต้อง #include <bits/stdc++.h> เข้ามาโค้ดก่อนใช้งาน ตัวอย่างหาผลรวมจากตัวแปร Array ชื่อ number และแสดงผลลัพธ์ออกสู่หน้าจอ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง C++ หาผลรวม Array ด้วยคำสั่ง accumulate
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
int number[] = {10, 20, 30};
int n = sizeof(number) / sizeof(number[0]);
cout << "ผลรวมของ Array number คือ " << accumulate(number, number + n, 0);
return 0;
}
ผลลัพธ์
ผลรวมของ Array number คือ 60
C++ หาผลรวม Array ด้วยคำสั่ง accumulate โดยตัวอย่างใช่คำสั่ง accumulate(number, number + n, 0) เพื่อหาผลรวมของตัวแปร Array number และพิมพ์ผลลัพธ์ออกสู่หน้าจอด้วยคำสั่ง cout