1182: 人民币问题(三重循环) 摘要:解题思路:我其实是想用 dfs 做的,不过不知道如何处理一些重复解的删除,所以选择了暴力,有大佬会的话,可以回复哦!注意事项:参考代码:#include<iostream>using namespac…… 题解列表 2024年07月13日 0 点赞 0 评论 84 浏览 评分:0.0
1182: 人民币问题(背下来) 摘要:解题思路:注意事项:参考代码:include<iostream>using namespace std;int main(){ int a,b,c,count=0; int sum; …… 题解列表 2024年03月14日 0 点赞 0 评论 105 浏览 评分:9.9
两层for循环,i 张5元,j 张2元,剩下的换1元币 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2024年03月13日 0 点赞 0 评论 69 浏览 评分:0.0
1182: 人民币问题 摘要:```cpp #include using namespace std; int main() { int a,b,c,count=0; int sum; cin…… 题解列表 2022年11月19日 0 点赞 0 评论 104 浏览 评分:9.9
#C++1182——人民币问题(循环递归) 摘要:解题思路: 用for循环遍历所有可能的情况参考代码:#include <iostream> #include <algorithm> using namespace std; typedef l…… 题解列表 2022年08月03日 0 点赞 0 评论 131 浏览 评分:0.0
编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int money,approach=0; while(scanf("%d",&money)!=EOF)…… 题解列表 2022年05月11日 0 点赞 0 评论 134 浏览 评分:0.0
编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>#define PI 3.1415using namespace …… 题解列表 2022年03月28日 0 点赞 0 评论 332 浏览 评分:0.0
编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:n=int(input()) a=((n-3)//5) b=((n-6)//2) s=0 for i in range(1,a+1): for j in…… 题解列表 2022年02月18日 0 点赞 0 评论 104 浏览 评分:0.0
1182: 人民币问题 超简单理解 摘要:```python n=int(input()) count=0 for i in range(1,n+1): for j in range(1,n+1): for …… 题解列表 2022年01月20日 0 点赞 0 评论 198 浏览 评分:0.0
人民币问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,s=0; scanf("%d",&n); for(int i=1;i<=n;i++) for(int…… 题解列表 2021年12月06日 0 点赞 0 评论 143 浏览 评分:0.0