编写题解 1600: 蓝桥杯算法训练VIP-s01串 摘要:解题思路:注意事项:参考代码:def change(m): k=str(m) s="" for i in k: if i=='0': …… 题解列表 2022年01月06日 0 点赞 0 评论 120 浏览 评分:0.0
蓝桥杯算法训练VIP-s01串(Java代码) 摘要: import java.util.*; public class Main { public static void main(String[] args) …… 题解列表 2021年03月12日 0 点赞 0 评论 180 浏览 评分:0.0
蓝桥杯算法训练VIP-s01串 (C语言代码) 摘要:#include<iostream> #include<string> using namespace std; int main(){ string str1="0",str2=""; …… 题解列表 2018年03月22日 1 点赞 0 评论 900 浏览 评分:0.0
11111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str1="0",str; int n; ci…… 题解列表 2022年08月08日 0 点赞 0 评论 130 浏览 评分:0.0
蓝桥杯算法训练VIP-s01串 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"#define max 10000void fun(int n){ char s = '0', a[max]…… 题解列表 2018年10月24日 0 点赞 0 评论 543 浏览 评分:0.0
蓝桥杯算法训练VIP-s01串-题解(C++代码) 摘要:``` #include #include using namespace std; int n; char a[100000]; char t[100000]; int ma…… 题解列表 2020年06月19日 0 点赞 0 评论 321 浏览 评分:0.0
WU-蓝桥杯算法训练VIP-s01串 (C++代码) 摘要:参考代码:#include<iostream> #include<cstring> using namespace std; int main() { //freopen("data.i…… 题解列表 2018年01月12日 2 点赞 0 评论 640 浏览 评分:0.0
蓝桥杯算法训练VIP-s01串 (C++string解决)(必看) 摘要:解题思路:string有replace函数,就是替换,正好对上这道题。注意事项:注意replace的三个参数,替换的起始位置,替换几个字符,替换为什么东西。参考代码:#include<iostream…… 题解列表 2018年02月08日 0 点赞 0 评论 635 浏览 评分:0.0
蓝桥杯算法训练VIP-s01串 (C++代码) 摘要:解题思路:注意事项:参考代码:#define CRT_SECURE_NO_WARNINGS #include <iostream> #include <vector> #include <a…… 题解列表 2019年01月04日 0 点赞 0 评论 315 浏览 评分:0.0
python-s01串(95分的可以看一下哈) 摘要:解题思路:注意事项:注意不要将n=0的情况落下了参考代码:def f(n): s01 = '0' for i in range(n): …… 题解列表 2022年01月23日 0 点赞 0 评论 117 浏览 评分:0.0