C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,m,j=0; char a[100000]; //数组稍微大点,不然会溢出错误!!…… 题解列表 2023年10月15日 0 点赞 0 评论 65 浏览 评分:0.0
LikeWater - 1969: 蓝桥杯算法提高VIP-字符串跳步C++(string字符串对象解题) 摘要:####个人感觉此题难度不大,可能是大家对与字符串对象的处理不太熟悉,下面我介绍一下。 ###string字符串对象 ***————引入#include库即可定义string对象字符串:例如s…… 题解列表 2023年03月10日 0 点赞 1 评论 66 浏览 评分:7.3
1969: 蓝桥杯算法提高VIP-字符串跳步 摘要:```cpp #include using namespace std; int main() { unsigned int start,step; string s; …… 题解列表 2023年02月01日 0 点赞 0 评论 59 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步 摘要:#include<stdio.h> #include<string.h> int main() { char s[99993];//这个很关键,测试这个代码最小就是99993能通过 …… 题解列表 2022年07月22日 0 点赞 0 评论 139 浏览 评分:9.9
字符串跳步 (Java代码) 摘要:import java.util.Scanner; public class Main{ public static void main(String[] args) { Scan…… 题解列表 2022年06月12日 0 点赞 0 评论 113 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串跳步-题解(C++代码) 摘要:#include <iostream> using namespace std; int main() { string temp; cin >> temp; int start, s…… 题解列表 2022年03月04日 0 点赞 0 评论 88 浏览 评分:0.0
编写题解 1969: 蓝桥杯算法提高VIP-字符串跳步 摘要:解题思路:注意事项:参考代码:a=input()s=""start,step=map(int,input().split())k=0for i in range(start,len(a)): i…… 题解列表 2022年01月06日 0 点赞 0 评论 137 浏览 评分:0.0
1969: 蓝桥杯算法提高VIP-字符串跳步 摘要:一个循环就搞定了。#include<bits/stdc++.h> using namespace std; int main() { string s; int st…… 题解列表 2021年12月21日 0 点赞 0 评论 154 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串跳步 (C语言代码) 摘要:解题思路:如题,设置首步和跳步注意事项:这个代码答案一致,但是说运行错误,仅供参考。参考代码:#include<stdio.h>#include<string.h>int main(){ char a…… 题解列表 2021年12月13日 0 点赞 0 评论 143 浏览 评分:2.0
蓝桥杯算法提高VIP-字符串跳步 ( C++ ) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; string s1; int main(…… 题解列表 2021年12月07日 0 点赞 0 评论 147 浏览 评分:0.0