1197: 发工资咯
摘要:解题思路:注意事项:参考代码:def coin_change(n):
coins = [100, 50, 10, 5, 2, 1]
num = []
for coin i……
发工资咯-题解(C语言代码)
摘要:题解太多了,不想再写了。混个分数呗!
```c
#include
int mod(int x)
{
int a = 0;
while(x>=100){
x -= 100……
1197: 发工资咯
摘要:#include<iostream>
using namespace std;
int main(){
int a[]={100,50,10,5,2,1};
int n,mon……
str = replace(old, new)替换所有空格
摘要:就这????
就这???
while 1:
st = input()
NewSt = st.replace(' ', '')
print……
题解(C++代码)(暴力??)
摘要:emmm
一个简单的暴力 我交了5回都是百分之五十 搞半天结果没有考虑算5块钱的情况
根据题意的数据量可以直接暴力,虽然我也想不到怎么优化(orz)
就是直接先拿票值大的钱 贪心的证……
发工资咯(Java题解+递归+数组)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { // 定义人民币面额数组 static int[] denomina……
发工资咯 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <iostream>
using namespace std;
int main(){
int n,t;
while(cin>>n&&n){……
发工资咯-题解(C语言代码)【贪心】
摘要:###普通的贪心
```c
#include
int main()
{
int n;
scanf("%d",&n);
while(n)
{
……
发工资咯!(python代码,思路清晰)
摘要:解题思路:注意事项: 数据需要横向输入参考代码:b = 0money = 0sum1 = 0sum2 = 0while True: # 输入数据,必须要横向输入 a……