题解 3008: 买笔

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

筛选

买笔 C语言解

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

期末来临了,班长小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 <bits/stdc++.h>using namespace std;int main(){    int x,a,b;    cin>>x;    a……

题解 3008: 买笔

摘要:解题思路:注意事项:若想让笔的数量最大,应优先购买4元的。以4为基准求余:剩1元,则4元钱的笔少买1支,换成1支5元笔;剩2元,则4元钱的笔少买1支,换成1支6元笔;剩3元,则4元钱的笔少买2支,换成……

编写题解 3008: 买笔

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

题解 3008: 买笔

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

编写题解 3008: 买笔

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