1 solutions

  • 0
    @ 2024-4-13 12:46:55

    #include #include

    int main() { int n; // 向量维度 std::cin >> n; // 读取向量维度

    std::vector a(n), b(n); // 创建两个大小为n的整数向量,用于存储向量a和向量b的分量

    // 读取向量a的分量 for (int i = 0; i < n; ++i) { std::cin >> a[i]; }

    // 读取向量b的分量 for (int i = 0; i < n; ++i) { std::cin >> b[i]; }

    // 计算点积 for (int i = 0; i < n; ++i) { dotProduct += // 累加每个分量的乘积 }

    // 输出点积结果 std::cout << dotProduct << std::endl;

    r

    }

    • 1

    Information

    ID
    6906
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    1
    Tags
    # Submissions
    7
    Accepted
    7
    Uploaded By