题解 3008: 买笔 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x; cin>>x; if(x%…… 题解列表 2024年01月07日 0 点赞 0 评论 149 浏览 评分:0.0
题解 3008: 买笔 摘要:解题思路:注意事项:若想让笔的数量最大,应优先购买4元的。以4为基准求余:剩1元,则4元钱的笔少买1支,换成1支5元笔;剩2元,则4元钱的笔少买1支,换成1支6元笔;剩3元,则4元钱的笔少买2支,换成…… 题解列表 2024年01月07日 0 点赞 0 评论 191 浏览 评分:9.9
题解 1764: 循环入门练习1(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,sum=0; for(a=1;a<…… 题解列表 2024年01月07日 0 点赞 0 评论 184 浏览 评分:9.9
3008: 买笔(超级简单) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; int b…… 题解列表 2024年01月07日 0 点赞 1 评论 202 浏览 评分:9.9
题解 3008: 买笔 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x,a,b; cin>>x; a…… 题解列表 2024年01月07日 0 点赞 0 评论 192 浏览 评分:9.9
题解 2544: N以内累加求和 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a; cin>>a; cout<<(a-1…… 题解列表 2024年01月07日 0 点赞 0 评论 180 浏览 评分:0.0
3008: 买笔 3008 3008: 买笔 3008: 买笔 3008: 买笔 3008: 买笔 3008: 买笔 3008: 买笔 3008: 买笔 3008: 买笔 3008: 买笔 3008 摘要:解题思路:注意事项:可以定义多个变量参考代码:#include <iostream>using namespace std;int main(int argc, char** argv){int x,…… 题解列表 2024年01月07日 0 点赞 0 评论 211 浏览 评分:9.9
C语言填鸭型 摘要:解题思路:检查左括号右括号是否配对注意事项:参考代码:#include"stdio.h"int main(){ char p[500]; memset(p,0,500); int i,j = 0; i…… 题解列表 2024年01月07日 0 点赞 0 评论 365 浏览 评分:0.0
[编程入门]报数问题-链表解决(Java代码) 摘要:# 解题思路 使用java自带的链表进行操作 关键代码(p + 2) % list.size();//保证索引不越界 ```java import java.util.Scanner; im…… 题解列表 2024年01月07日 0 点赞 0 评论 184 浏览 评分:0.0
蓝桥杯历届试题-回文数字-纯暴力(Java) 摘要:# 解题思路: 对每一个数的每个位的总值是否与输入的值相同 并且对两个sb对象进行判断,完全相同就是回文数字 ## 注意事项: i的值不能直接参加运算,否则会影响后续的循环 …… 题解列表 2024年01月07日 0 点赞 0 评论 159 浏览 评分:0.0