题解 3008: 买笔

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

筛选

期末来临了,班长小Q决定将剩余班费x元钱,用于购买若干支钢笔奖励给一些学习好、表现好的同学。已知商店里有三种钢笔,它们的单价为6元、5元和4元。小Q想买尽量多的笔(鼓励尽量多的同学),同时他又不想有剩

摘要:解题思路:优先买4元x/4=0  全买4元x/4=1  买1个5元x/4=2  买1个6元x/4=3  买1个5元 买1个6元注意事项:参考代码:#include <bits/stdc++.h>usi……

编写题解 3008: 买笔

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    long long x;    cin>>x;    if(x……

编写题解 3008: 买笔

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

不懂可评论

摘要:解题思路:注意事项:参考代码:x=int(input()) for pen4 in range(x//4,-1,-1):#优先买4元的笔,开始循环递减到0结束     remaining=x-pe……

买笔 C语言解

摘要:解题思路:注意事项:不能够有剩余的钱,且所买笔的数量尽量多参考代码:#include <stdio.h>int main(){    int a;    int c,b;    scanf( "%d"……

java--study||O.o

摘要:参考代码:import java.util.Scanner;   public class Main {   public static void main(String[] args)   ……

题解 3008: 买笔

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int x,a,b;    cin>>x;    a……

题解 3008: 买笔

摘要:解题思路:注意事项:?参考代码:#include <iostream>using namespace std;int main(){    int  x;    cin>>x;    if(x%4==……

买笔程序(买最多的笔python简单粗暴)

摘要:解题思路:要买最多的笔,肯定优先买4元最便宜的,当钱不够买4元笔的时候就撤回之前买的一些笔。转而买5元和6元的笔让钱凑到零特点:简单粗暴参考代码:x = int(input())a = 0  # 6元……