gpt4 book ai didi

c++ - 想在整数数组的所有索引中添加一个整数

转载 作者:太空宇宙 更新时间:2023-11-04 14:40:15 26 4
gpt4 key购买 nike

我想在一个数组的所有索引中添加一个整数。不使用循环。在单个语句中。

int a[4]={4,4,4,4};我想在所有索引中加 1..所以输出是计数<

输出:_5个5个5个5

我真的很感谢大家..

最佳答案

#include <functional>
#include <algorithm>

int main()
{
int a[] = {1, 2, 3, 4};

std::transform(a, a + sizeof(a) / sizeof(a[0]), a, std::bind1st(std::plus<int>(), 1));
}

关于c++ - 想在整数数组的所有索引中添加一个整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4534734/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com