发工资咯-题解(C++代码) 摘要:```cpp #include #include #include #include #include #include #include using namespace std; …… 题解列表 2020年03月27日 0 点赞 0 评论 268 浏览 评分:0.0
发工资咯-题解(C语言代码) 摘要:题解太多了,不想再写了。混个分数呗! ```c #include int mod(int x) { int a = 0; while(x>=100){ x -= 100…… 题解列表 2020年01月07日 0 点赞 0 评论 262 浏览 评分:0.0
发工资咯-题解(C++代码) 摘要:#include #include using namespace std; int main() { int n = 0; int a[6] = {100,50,10,5,2,1…… 题解列表 2019年08月18日 0 点赞 0 评论 667 浏览 评分:0.0
发工资咯-题解(Java代码) 摘要:解题思路:贪心算法注意事项:贪心算法,要让给出的纸币最少。先用大面值的纸币结账,如果不够,则用小一号面值的纸币,依次类推参考代码:import java.util.Scanner; public…… 题解列表 2020年08月18日 0 点赞 0 评论 299 浏览 评分:0.0
发工资咯 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int fun(int* a,int* b, int n){ int i,j,t=0; fo…… 题解列表 2019年02月03日 1 点赞 0 评论 458 浏览 评分:0.0
1197: 发工资咯 摘要:```java import java.util.Scanner; public class 测试 { public static void main(String[] args)…… 题解列表 2021年03月23日 0 点赞 0 评论 164 浏览 评分:0.0
1197: 发工资咯(贪心算法) 摘要:核心:票票从大开始扣,数量是最少的代码:while True: l = [int(x) for x in input().split()] n = l[0] if n =…… 题解列表 2024年08月30日 0 点赞 0 评论 95 浏览 评分:0.0
C++贪心法做个笔记期末复习用,说标题太短不让我发 摘要:解题思路:老师上课讲的,做个笔记期末复习用注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int maxn=1005;int n,…… 题解列表 2022年04月05日 0 点赞 0 评论 162 浏览 评分:0.0
发工资咯(动态规划) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; //如果发101元,有6种情况: //1.f(101)=f(101-1)+1 /…… 题解列表 2023年08月07日 0 点赞 0 评论 46 浏览 评分:0.0
发工资咯-题解(C++代码) 摘要: ```cpp #include using namespace std; int sum = 0,temp; int max(int num) { if(num >= 100…… 题解列表 2020年02月20日 0 点赞 0 评论 328 浏览 评分:0.0