蓝桥杯2015年第六届真题-切开字符串 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<set> using namespace std; string s1;…… 题解列表 2021年12月05日 0 点赞 0 评论 369 浏览 评分:0.0
运行没问题 直接复制 摘要:#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <stdio.h>//#include <cmath>//#include <al…… 题解列表 2021年12月05日 0 点赞 0 评论 379 浏览 评分:0.0
活动选择c++ 摘要:解题思路:结束时间越早,能安排的活动就越多;注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int begin[100…… 题解列表 2021年12月04日 0 点赞 0 评论 1005 浏览 评分:9.4
蓝桥杯算法训练VIP-比较字符串 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<algorithm> using namespace std; cha…… 题解列表 2021年12月04日 0 点赞 0 评论 348 浏览 评分:0.0
自己看.............. 摘要:#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <stdio.h>#include <cmath>#include <algori…… 题解列表 2021年12月04日 0 点赞 0 评论 678 浏览 评分:0.0
哥德巴赫曾猜测 摘要:解题思路:编写一个函数确认两个数是否非素数,并且利用循环得出次数注意事项:参考代码:#include<iostream>using namespace std;int fun(int );int ma…… 题解列表 2021年12月02日 0 点赞 0 评论 477 浏览 评分:8.0
编写题解 1574: 蓝桥杯算法提高VIP-选择排序 摘要:#include<iostream> using namespace std; int main() { int n,j,i,min,flag,x; cin>>n; …… 题解列表 2021年12月02日 0 点赞 0 评论 287 浏览 评分:0.0
编写题解 1019: [编程入门]自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double m,n,h=0.0,l,s; cin>>m>…… 题解列表 2021年12月02日 0 点赞 0 评论 291 浏览 评分:0.0
链表合并(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ int id; int score; student *nex…… 题解列表 2021年12月01日 0 点赞 0 评论 594 浏览 评分:9.9
结构体之成绩记录(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char id[20]; char name[20]; int…… 题解列表 2021年12月01日 0 点赞 0 评论 572 浏览 评分:9.9