c_cpp 在C ++中添加两个数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在C ++中添加两个数组相关的知识,希望对你有一定的参考价值。

#include <iostream>
using namespace std;
 
main()
{
   int first[20], second[20], c, n;
   
   cout << "Enter the number of elements in the array ";
   cin >> n;
 
   cout << "Enter elements of first array " << endl;
 
   for ( c = 0 ; c < n ; c++ )
      cin >> first[c];
 
   cout << "Enter elements of second array " << endl;
 
   for ( c = 0 ; c < n ; c++ )
      cin >> second[c];
 
   cout << "Sum of elements of two arrays " << endl;
 
   for ( c = 0 ; c < n ; c++ )
      cout << first[c] + second[c] << endl;
     
   return 0;
}

以上是关于c_cpp 在C ++中添加两个数组的主要内容,如果未能解决你的问题,请参考以下文章

如何在Java中获得两个n维数组的总和?

如何在 C/C++ 中对二维数组求和

如何在 NSDictionary 中为键和对象添加数组

c_cpp 用两个数组来表示所给的含有Ñ个元素的有序集S.用值[0:N]存储有序集中的元素,链接[0:N]存储有序集中元素在数组值中位置的指针(实际上使用数组模拟链表)。链路[0]指向有序集

在c ++中向数组添加索引和指定的数字

关于c语言数组 如何在一个数组尾部添加新的元素?需要建立一个新的数组吗?