Superlwx


私信TA

用户名:luoweixuan1225

访问量:633

签 名:

Superlwx

等  级
排  名 1300
经  验 2996
参赛次数 35
文章发表 5
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

Superlwx

TA的其他文章

A+B Problem题解
浏览:196

解题思路:

注意事项:

参考代码:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int ans[111]={};
    int n;
    cin>>n;
    ans[0]=1;
    for(int i=1;i<=n;i++)
    {
        for(int j=i;j<=n;j++)
        {
            ans[j]+=ans[j-i];
        }
     } 
     cout<<ans[n]<<endl;
    return 0;
}

 

0.0分

2 人评分

  评论区

  • «
  • »