买笔(三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
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: 买笔 买个鸡脖 摘要:解题思路:注意事项:需要想到多种可能参考代码:#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语言解 摘要:解题思路:注意事项:不能够有剩余的钱,且所买笔的数量尽量多参考代码:#include <stdio.h>int main(){ int a; int c,b; scanf( "%d"…… 题解列表 2024年02月19日 0 点赞 0 评论 164 浏览 评分:9.9
编写题解 3008: 买笔 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long x; cin>>x; if(x…… 题解列表 2024年11月24日 1 点赞 2 评论 88 浏览 评分:9.9