++++++++++++++++++++买笔问题++++++++++++++++++++ 摘要:解题思路:#include<stdio.h>int main(){ int x,a,b,c,i=0,j=0,k=0; scanf("%d",&x); for(a=0;a<=x/6;a…… 题解列表 2023年07月11日 0 点赞 0 评论 247 浏览 评分:2.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 评论 144 浏览 评分: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 评论 159 浏览 评分:6.0
买笔(三for循环) 摘要:解题思路:注意事项:注意要把5放在最外层循环,因为输入10的时候会出现两个5块钱的笔的特殊情况,所以不考虑,因此最先考虑4和6的情况,4放最内层,因为当输入的数为4和6的最小公倍数时,四的除数更大,所…… 题解列表 2022年11月10日 0 点赞 0 评论 363 浏览 评分:6.0
编写题解 3008: 买笔, 摘要:解题思路:注意事项:只因你太美参考代码:#include <iostream>using namespace std;int main(int argc, char** argv) {int x,y,…… 题解列表 2023年02月06日 0 点赞 2 评论 308 浏览 评分:8.0
买笔问题C语言 摘要:解题思路:以4为基准求余,余1,2,3,利用开关语句switch来控制。若买完x/4支4元钱的笔还剩1元,则4元钱的笔少买1支,换成1支5元笔即可;若买完x/4支4元钱的笔还剩2元,则4元钱的笔少买1…… 题解列表 2022年12月11日 0 点赞 1 评论 703 浏览 评分:8.4
3008: 买笔题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; char c; int result; scanf("%d%d",&a…… 题解列表 2024年11月24日 2 点赞 1 评论 277 浏览 评分:8.7
3008: 买笔(c++代码) 摘要:```cpp #include using namespace std; int main() { int x,a,b,c,i=0,j=0,k=0; cin>>x; …… 题解列表 2023年01月08日 1 点赞 0 评论 488 浏览 评分:8.8
3008: 买笔(超级简单) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; int b…… 题解列表 2024年01月07日 0 点赞 1 评论 192 浏览 评分:9.9
题解 3008: 买笔 摘要:解题思路:注意事项:若想让笔的数量最大,应优先购买4元的。以4为基准求余:剩1元,则4元钱的笔少买1支,换成1支5元笔;剩2元,则4元钱的笔少买1支,换成1支6元笔;剩3元,则4元钱的笔少买2支,换成…… 题解列表 2024年01月07日 0 点赞 0 评论 181 浏览 评分:9.9