3008: 买笔 买个鸡脖 摘要:解题思路:注意事项:需要想到多种可能参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x; cin>>x; …… 题解列表 2024年01月07日 0 点赞 0 评论 80 浏览 评分:0.0
买笔买笔30083008 摘要:解题思路:#include <iostream>using namespace std;int main(int argc, char** argv){int x,y,a,b,c;cin>>x;c=x…… 题解列表 2024年01月07日 0 点赞 0 评论 54 浏览 评分:2.0
c++买笔c++买笔c++买笔c++买笔c++买笔 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int x; cin>>x; if(x%4==0)…… 题解列表 2024年01月07日 0 点赞 1 评论 66 浏览 评分:6.0
题解 3008: 买笔 摘要:解题思路:注意事项:?参考代码:#include <iostream>using namespace std;int main(){ int x; cin>>x; if(x%4==…… 题解列表 2024年01月07日 0 点赞 1 评论 152 浏览 评分:9.9
题解 3008: 买笔 摘要:解题思路:要买最多的笔,肯定优先买4元最便宜的,当钱不够买4元笔的时候就撤回之前买的一些笔。转而买5元和6元的笔让钱凑到零注意事项:可以定义多个变量参考代码:方法一:(if语句)#include <i…… 题解列表 2024年01月15日 0 点赞 0 评论 128 浏览 评分:0.0
java实现买笔的题,很清楚了当,希望可以帮助到你嗨嗨嗨66666666666 摘要:解题思路:有俩目的,第一是要足够多,第二是要把钱花光。所以直接先全买4,然后看剩多少钱,根据余数把4元的一根笔换做5或6注意事项:参考代码:import java.util.ArrayList; i…… 题解列表 2024年01月16日 0 点赞 0 评论 103 浏览 评分:0.0
买笔 C语言解 摘要:解题思路:注意事项:不能够有剩余的钱,且所买笔的数量尽量多参考代码:#include <stdio.h>int main(){ int a; int c,b; scanf( "%d"…… 题解列表 2024年02月19日 0 点赞 0 评论 164 浏览 评分:9.9
不懂可评论 摘要:解题思路:注意事项:参考代码:x=int(input()) for pen4 in range(x//4,-1,-1):#优先买4元的笔,开始循环递减到0结束 remaining=x-pe…… 题解列表 2024年11月21日 0 点赞 0 评论 44 浏览 评分:9.9
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] a…… 题解列表 2024年11月21日 0 点赞 0 评论 39 浏览 评分:0.0
3008: 班长用班费买笔 摘要:解题思路:尽量买四元的笔剩1元,则4元钱的笔少买1支,换成1支5元笔;剩2元,则4元钱的笔少买1支,换成1支6元笔;剩3元,则4元钱的笔少买2支,换成1支5元笔和1支6元笔;注意事项:参考代码:#in…… 题解列表 2024年11月24日 2 点赞 0 评论 77 浏览 评分:10.0