温度转换 题解(超级简单) 摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("…… 题解列表 2022年05月08日 1 点赞 0 评论 442 浏览 评分:0.0
修剪灌木(C++) 摘要:```cpp #include using namespace std; int main(){ int n; cin>>n; for(int i=1;i…… 题解列表 2022年05月08日 0 点赞 0 评论 977 浏览 评分:9.9
编写题解 1015: [编程入门]求和训练 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) sum1=sum2=sum3=0 for i in range(1,a+1): sum1+=i…… 题解列表 2022年05月08日 0 点赞 0 评论 233 浏览 评分:0.0
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:n=eval(input()) sum=0 a=1 for i in range(1,n+1): a=1 for j in range(1,i+…… 题解列表 2022年05月08日 0 点赞 0 评论 327 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 341 浏览 评分:0.0
绝对值排序(C++简易代码) 摘要:解题思路:结构体排序,简便简单;注意事项:参考代码:#include<bits/stdc++.h>using namespace std; long long n,a[100005];int cmp…… 题解列表 2022年05月08日 0 点赞 0 评论 842 浏览 评分:7.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 287 浏览 评分:0.0
字符串内排序 题解(超简单) 摘要:解题思路:不就是个字符串中的字符排个序嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;char a[1005];int m…… 题解列表 2022年05月08日 0 点赞 0 评论 435 浏览 评分:0.0
整数奇偶排序 题解(c++简单) 摘要:解题思路:这题错了那么多次,我无语了。直接上菜。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,x[1005],y[1005]…… 题解列表 2022年05月08日 0 点赞 0 评论 1255 浏览 评分:2.5
编写题解 1013: [编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:n=eval(input()) sum=0 a=0 for i in range(n): a=a*10+2 sum+=a print(sum)…… 题解列表 2022年05月08日 0 点赞 0 评论 413 浏览 评分:0.0