Forrest


私信TA

用户名:dotcpp0717441

访问量:3998

签 名:

等  级
排  名 88
经  验 9136
参赛次数 1
文章发表 121
年  龄 0
在职情况 教师
学  校 优学乐程
专  业

  自我简介:

TA的其他文章

解题思路:枚举

注意事项:

参考代码:

#include<iostream>
#include<algorithm>
using namespace std;
int cnt,n;
int main()
{
    cin >> n;
    for(int i = 0; i <= n / 10; i ++)
        for(int j = 0; j <= n / 20; j ++)
            for(int k = 0; k <= n / 50; k ++)
                for(int l = 0; l <= n / 100; l ++)
                {
                    if(i * 10 + j * 20 + k * 50 + l * 100 == n) cnt ++;
                }
    cout << cnt;
    return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »