摘要: 蓝桥杯模拟小赛#1 题解 A 枚举 \(1 - 2020\) 之间所有整数判断即可,用一个计数器记录答案个数。 #include<bits/stdc++.h> using namespace std; int main(){ int ans = 0; for(int i = 1; i <= 2020 阅读全文
posted @ 2024-03-27 20:43 XiaoMo247 阅读(98) 评论(0) 推荐(1)