题解 1764: 循环入门练习1 摘要:解题思路:利用高斯的求数方法,没想到对了。注意事项:直接输出结果就行参考代码:#include <bits/stdc++.h>using namespace std;int main(){ co…… 题解列表 2023年12月24日 0 点赞 0 评论 264 浏览 评分:9.9
善于运用C++的sort函数 摘要:参考代码:#include#includeusing namespace std; int main() { int n; scanf("%d",&n); getchar(); /…… 题解列表 2023年12月23日 0 点赞 0 评论 352 浏览 评分:7.3
2861: 验证子串 摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h> using namespace std; int main() { string str ; …… 题解列表 2023年12月23日 0 点赞 0 评论 281 浏览 评分:9.9
题解 2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月23日 0 点赞 0 评论 280 浏览 评分:0.0
题解 2779: 输出绝对值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a; cin>>a; pr…… 题解列表 2023年12月23日 0 点赞 0 评论 466 浏览 评分:9.9
题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int a,b; cin>>a>>b;…… 题解列表 2023年12月23日 0 点赞 0 评论 274 浏览 评分:0.0
题解 2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char c; cin>>c; if(in…… 题解列表 2023年12月23日 0 点赞 0 评论 279 浏览 评分:9.9
编写题解 3001: 整数的和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; c…… 题解列表 2023年12月23日 0 点赞 0 评论 316 浏览 评分:0.0
3009: 判断闰年 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ bool flag; int year; …… 题解列表 2023年12月23日 0 点赞 0 评论 207 浏览 评分:0.0
编写题解 2998: 电影票 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; cout<<a<<" …… 题解列表 2023年12月23日 0 点赞 0 评论 576 浏览 评分:0.0