题解 1197: 发工资咯

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

发工资咯(C语言)

摘要:解题思路:使用贪心算法在每次循环迭代中,定义整数变量 salary 用于存储每个人的工资,并初始化一个计数变量 count 用于记录需要的纸币数量。同时,定义一个整数数组 money,其中包含了货币纸……

发工资咯 (贪心法)

摘要:``` #include using namespace std; int Dno[6]={100,50,10,5,2,1};//面额大小 int sum(int x){ int y=0……

编写题解 1197: 发工资咯

摘要:解题思路:注意事项:参考代码:while True:     ls=list(map(int,input().split()))     if ls[0]==0:         break ……

发工资了 贪心思路

摘要:解题思路:贪心算法 抓大张的拿注意事项:输出时换行参考代码:#include<stdio.h>int b[6]={100,50,10,5,2,1},a[1000];int main(){    int……

1197: 发工资咯

摘要:```cpp #include using namespace std; int Dno[6]={100,50,10,5,2,1}; int sum(int x) { int y=……