蓝桥杯算法训练VIP-字符删除(这题给做笑了,是会玩空格的) 摘要:解题思路:最好用gets收取输入,因为%s不收取空格,会导致后面收取输入失败,不得不说,这坑是真有意思注意事项:参考代码:#include<stdio.h> int main() { char…… 题解列表 2023年12月22日 0 点赞 0 评论 142 浏览 评分:0.0
图像相似度 摘要:解题思路:分别存入两个列表,一一比对注意事项:参考代码:m,n=map(int,input().split())myList1=[list(map(int,input().split())) for …… 题解列表 2023年12月23日 0 点赞 0 评论 204 浏览 评分:0.0
编写题解 2787: 有一门课不及格的学生 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; if(a>=60&&b<60||a<6…… 题解列表 2023年12月23日 0 点赞 0 评论 184 浏览 评分:0.0
3006: 适合晨练 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int t; cin >>t; if(2…… 题解列表 2023年12月23日 0 点赞 0 评论 262 浏览 评分:0.0
题解 3009: 判断闰年 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a%…… 题解列表 2023年12月23日 0 点赞 0 评论 189 浏览 评分:0.0
编写题解 2998: 电影票 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; cout<<a<<" …… 题解列表 2023年12月23日 0 点赞 0 评论 485 浏览 评分:0.0
3009: 判断闰年 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ bool flag; int year; …… 题解列表 2023年12月23日 0 点赞 0 评论 148 浏览 评分:0.0
编写题解 3001: 整数的和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; c…… 题解列表 2023年12月23日 0 点赞 0 评论 234 浏览 评分:0.0
题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int a,b; cin>>a>>b;…… 题解列表 2023年12月23日 0 点赞 0 评论 207 浏览 评分:0.0
题解 2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月23日 0 点赞 0 评论 205 浏览 评分:0.0