_Phoebe__ 2022-04-30 03:51 采纳率: 96.9%
浏览 27
已结题

c++11 lambda 我想求10个随机数的平方和 中间那一点不会写的 怎么写呢

c++11 lambda 我想求10个随机数的平方和 中间那一点不会写的 怎么写呢

#include <bits/stdc++.h>
using namespace std;
void myPrintf(int val)
{
    cout << val << " ";
}
int main()
{
    int a[24];
    vector<int> sourceVector;
    sourceVector.resize(10);
    srand((unsigned)time(NULL));
    for(int i=0;i<10;i++)
    {
        a[i]=rand()%100;
        sourceVector.push_back(a[i]); 
    }
//    int res=0;
//    generate(sourceVector.begin(), sourceVector.end(), [&res](int x) {
//        res=x*x;
//        return res;
//    });
    for_each(sourceVector.begin(), sourceVector.end(), myPrintf);
    cout << endl;
}


  • 写回答

4条回答 默认 最新

  • 关注

    遍历每次平方加到res里,之后输出

    img

        #include <bits/stdc++.h>
        using namespace std;
        void myPrintf(int val)
        {
            cout << val << " ";
        }
        int main()
        {
            int a[24];
            vector<int> sourceVector;
            sourceVector.resize(10);
            srand((unsigned)time(NULL));
            for(int i=0;i<10;i++)
            {
                a[i]=rand()%100;
                sourceVector.push_back(a[i]);
            }
            int res=0;
             vector<int>::iterator i1;
            for (i1 = sourceVector.begin(); i1 != sourceVector.end(); ++i1) {
               res+=*i1**i1;
            }
            cout<<res<<endl;
            for_each(sourceVector.begin(), sourceVector.end(), myPrintf);
            cout << endl;
        }
    
    
    
    

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

    如有帮助,请点击我评论上方【采纳该答案】按钮支持一下,谢谢!

    回复
查看更多回答(3条)
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 5月7日
  • 已采纳回答 4月30日
  • 创建了问题 4月30日
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部