题解 2822: 求分数序列和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double a=1.0,b=2.0,c=0;…… 题解列表 2023年11月12日 0 点赞 0 评论 204 浏览 评分:0.0
萌新出品:2749: Hello, World! 摘要:参考代码:#include<iostream>using namespace std;int main(){ cout <<"Hello, World!"; return 0;}c完记的给好评…… 题解列表 2023年11月12日 0 点赞 0 评论 832 浏览 评分:9.0
2768: 与圆相关的计算 摘要:解题思路:注意事项:a要定义成小数参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,c,d; …… 题解列表 2023年11月12日 0 点赞 0 评论 278 浏览 评分:9.9
原神andc++萌新出品 题解:1267: A+B Problem 摘要:原神 启动!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码: #include<iostream>using namespace std;int main(){ …… 题解列表 2023年11月12日 0 点赞 0 评论 174 浏览 评分:8.0
1953: 三位数分解 摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; …… 题解列表 2023年11月12日 0 点赞 0 评论 429 浏览 评分:9.9
1953: 三位数分解 摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; …… 题解列表 2023年11月12日 0 点赞 0 评论 437 浏览 评分:9.9
2764: 带余除法 摘要:解题思路:注意事项:cin不能用,参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>a>>…… 题解列表 2023年11月12日 0 点赞 0 评论 294 浏览 评分:9.9
三位数分解(题解) 摘要:解题思路:输入一个三位整数,分三行分别输出这个三位数的百位、十位、个位数。输入格式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int m…… 题解列表 2023年11月12日 0 点赞 0 评论 253 浏览 评分:9.9
三位数分解 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int three,ge,shi,bai; cin>>t…… 题解列表 2023年11月12日 0 点赞 0 评论 175 浏览 评分:6.0
三个数最大值1002题解(c++) 摘要:#include using namespace std; int main() { int a; int b; int c; cin>>a>>b>>c; if (a>b>c)…… 题解列表 2023年11月12日 0 点赞 0 评论 208 浏览 评分:2.0