发工资咯-题解(C语言代码) 摘要:``` #include int main(){ int c,n,m; while(scanf("%d",&n)!=EOF&&n){ c=0; …… 题解列表 2019年07月17日 0 点赞 0 评论 350 浏览 评分:0.0
发工资咯-题解(C语言代码)【贪心】 摘要:###普通的贪心 ```c #include int main() { int n; scanf("%d",&n); while(n) { …… 题解列表 2019年07月11日 0 点赞 0 评论 511 浏览 评分:6.0
发工资咯 (Python代码) 摘要:注记:python里有个内建函数divmod,挺适合这道题的,哈哈哈 ```python def cal(n): N1, remainder = divmod(n, 100) …… 题解列表 2019年06月18日 0 点赞 1 评论 1276 浏览 评分:9.9
优质题解 发工资咯-题解(C语言代码)18行简洁代码 摘要:1. 题意:给定一个钱数,要求用最少张数的纸币表示。 2. 思路:贪心法,从最大纸币开始选择,例如:223元,先看100元的只能能不能用上,这里可以用上(两个100),那么纸币张数加2,钱数减少10…… 题解列表 2019年06月12日 3 点赞 4 评论 1239 浏览 评分:7.3
发工资咯 (C语言代码) 摘要:解题思路:每个人逐个拆分 累加张数注意事项:参考代码:#include<stdio.h>int a[6]={1,2,5,10,50,100};//分别是各个面额int b[102];//储存每个员工工…… 题解列表 2019年04月15日 0 点赞 0 评论 444 浏览 评分:6.0
发工资咯 (C++代码)又水了一发 摘要:参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.tie(0); using …… 题解列表 2019年03月20日 0 点赞 0 评论 427 浏览 评分:0.0
发工资咯 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int qianshu(int n);int main(){ int n; while(scanf("%d",&n)&&n) { i…… 题解列表 2019年03月14日 0 点赞 0 评论 376 浏览 评分: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
发工资咯 (Java代码) 摘要:解题思路:注意事项:先取100面额的人民币,再依次降低面额参考代码:import java.util.Scanner;public class Main { public static void ma…… 题解列表 2018年11月29日 1 点赞 0 评论 606 浏览 评分:0.0
发工资咯 (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <stdio.h> #define…… 题解列表 2018年11月03日 0 点赞 0 评论 391 浏览 评分:0.0