标记一下这个题!!! 摘要:解题思路:注意事项:参考代码:*************************************************************************************…… 题解列表 2023年03月02日 0 点赞 0 评论 333 浏览 评分:0.0
编写题解 1018: [编程入门]有规律的数列求和 摘要:for(表达式1;表达式2;表达式3){若干语句}//for循环语句及其格式 思路:观察这组数据,设第一项的分子为a,分母为b,则第一项为a/b,第二项为(a+b)/a,第三项为((a+…… 题解列表 2023年03月02日 0 点赞 0 评论 674 浏览 评分:0.0
1031: [编程入门]自定义函数之字符串反转 摘要:解题思路:逆序,就是将最后一个元素与第一个交换,倒数第二个元素与第二个交换……因此用两个循环控制变量,一个从首元素开始,另一个从末元素开始,再用一个临时变量作为交换的中介,就可以实现逆序了。用指针将数…… 题解列表 2023年03月02日 0 点赞 0 评论 362 浏览 评分:0.0
【Python题解】ISBN码 摘要:# 解题思路 整体思路比较简单,注意如果为10,将其转换为X,具体实现看代码: # 参考代码 ```python while True: try: # raw …… 题解列表 2023年03月02日 0 点赞 0 评论 577 浏览 评分:9.9
【Python题解】蓝桥杯基础练习VIP-完美的代价 摘要:# 解题思路 本题利用双指针,其中头指针 `head` 从前向后遍历,尾指针 `tail` 从后向前遍历。 **退出循环的条件:** 1. 字符串长度为偶数,但是有频数为奇数的字母 2. …… 题解列表 2023年03月02日 0 点赞 0 评论 611 浏览 评分:7.0
函数彩笔一个 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct ji{ char num[100],na[100]; int s[3];};void input(struct ji …… 题解列表 2023年03月02日 0 点赞 0 评论 337 浏览 评分:0.0
求大神看看 为哈还是过一半 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int flag = 0,a[1000]={0}; char…… 题解列表 2023年03月02日 0 点赞 0 评论 365 浏览 评分:0.0
一个彩币的做法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; scanf("%d",&n); pow(n/10…… 题解列表 2023年03月02日 0 点赞 0 评论 313 浏览 评分:0.0
c++解题思路 摘要:解题思路:注意事项:参考代码:#include<iosteream>using namespace std;int main(){ int a,b; cin >>a; cin >>b; …… 题解列表 2023年03月02日 0 点赞 0 评论 303 浏览 评分:6.0
我是大厦必 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ for(int i=100;i<=999;i++) { …… 题解列表 2023年03月02日 0 点赞 0 评论 349 浏览 评分:0.0