买笔(三for循环) 摘要:解题思路:注意事项:注意要把5放在最外层循环,因为输入10的时候会出现两个5块钱的笔的特殊情况,所以不考虑,因此最先考虑4和6的情况,4放最内层,因为当输入的数为4和6的最小公倍数时,四的除数更大,所…… 题解列表 2022年11月10日 0 点赞 0 评论 283 浏览 评分:6.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 评论 592 浏览 评分:8.4
买笔问题——各位大佬,欢迎点评 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,a,b,c,i=0,j=0,k=0; scanf("%d",&x); for(a=…… 题解列表 2022年12月13日 0 点赞 0 评论 572 浏览 评分:9.9
题解 | 3008: 买笔(简单易懂) 摘要:## 代码 ```python # 方法1 x = int(input()) pen_4 = int(x/4) surplus = x%4 if(surplus == 3): …… 题解列表 2022年12月29日 0 点赞 1 评论 451 浏览 评分:9.9
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日 0 点赞 0 评论 398 浏览 评分:8.6
编写题解 3008: 买笔, 摘要:解题思路:注意事项:只因你太美参考代码:#include <iostream>using namespace std;int main(int argc, char** argv) {int x,y,…… 题解列表 2023年02月06日 0 点赞 2 评论 207 浏览 评分:8.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, category[3] = { 0 }; scanf("%d", &n); wh…… 题解列表 2023年06月23日 0 点赞 0 评论 126 浏览 评分:0.0
++++++++++++++++++++买笔问题++++++++++++++++++++ 摘要:解题思路:#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 评论 175 浏览 评分:2.0
略麻烦但很易懂! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,i=0,j=0,k=0,m=0,z,p,c; scanf("%d",&x); for(i=0;6*i…… 题解列表 2023年11月07日 0 点赞 0 评论 119 浏览 评分:0.0
编写题解 3008: 买笔 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年12月07日 0 点赞 0 评论 197 浏览 评分:9.9