当前位置: 代码迷 >> 综合 >> AcWing 814. 复制数组
  详细解决方案

AcWing 814. 复制数组

热度:57   发布时间:2023-11-22 13:38:15.0

文章目录

  • AcWing 814. 复制数组
  • AC代码


AcWing 814. 复制数组

本题链接:AcWing 814. 复制数组

本博客给出本题截图
在这里插入图片描述

AC代码

代码

#include <cstring>
#include <iostream>using namespace std;const int N = 110;void copy(int a[], int b[], int size)
{
    memcpy(b, a, size * 4);
}int main()
{
    int a[N], b[N];int n, m, size;cin >> n >> m >> size;for (int i = 0; i < n; i ++ ) cin >> a[i];for (int i = 0; i < m; i ++ ) cin >> b[i];copy(a, b, size);for (int i = 0; i < m; i ++ ) cout << b[i] << ' ';cout << endl;return 0;
}