随笔分类 -  蓝桥杯

摘要:#A. 门牌制作 ##答案 624 ##代码 #include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int cnt = 0; for (int i = 1 阅读全文
posted @ 2020-10-17 21:00 Kanoon 阅读(1333) 评论(6) 推荐(0)
摘要:题目链接:http://lx.lanqiao.cn/problemset.page?code=BASIC BASIC-1 闰年判断 题解 模拟。 代码 #include <bits/stdc++.h> using namespace std; int main() { int y; cin >> y 阅读全文
posted @ 2020-09-11 23:26 Kanoon 阅读(212) 评论(0) 推荐(0)
摘要:题目链接:http://lx.lanqiao.cn/problemset.page?code=BEGIN BEGIN-1 A+B问题 #include <bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; 阅读全文
posted @ 2020-09-11 23:17 Kanoon 阅读(200) 评论(0) 推荐(0)