题解列表

筛选

2750: 字符菱形

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

1124: C语言训练-大、小写问题

摘要:解题思路:注意事项:参考代码:傻逼题目限制得put,get才能通过#include<iostream>#include<cstring>using namespace std;int main(){ ……

1139: C语言训练-求素数问题

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int n; cin>>n;    int i,j;//设置为全……

1145: C语言训练-自由落体问题

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>//精确计算必备using namespace std;int main(){    int n; ……

蓝桥杯算法训练VIP-字串统计(简单直白)python

摘要:解题思路:从第一位开始遍历,一个pase一组进行对比,对比成功(即出现重复子串),count+1。遍历至最后一位break,同时计入count数、本命子串位置及长度,方便后续对比输出。注意事项:参考代……