个数找最大值 题解(c++超简单,直接) 摘要:解题思路:直接用两次max函数找最大的。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){scan…… 题解列表 2022年05月08日 0 点赞 0 评论 329 浏览 评分:0.0
母牛的故事 题解(c++简单) 摘要:解题思路:直接一个一个推算就欧了,最后输出结果。呵呵。请欣赏代码!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int a[…… 题解列表 2022年05月08日 0 点赞 0 评论 336 浏览 评分:0.0
密码破译 题解(c++超简单) 摘要:解题思路:用ASCII表的位置来转换。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ cin>>…… 题解列表 2022年05月08日 0 点赞 0 评论 760 浏览 评分:6.0
温度转换 题解(超级简单) 摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("…… 题解列表 2022年05月08日 1 点赞 0 评论 410 浏览 评分:0.0
修剪灌木(C++) 摘要:```cpp #include using namespace std; int main(){ int n; cin>>n; for(int i=1;i…… 题解列表 2022年05月08日 0 点赞 0 评论 947 浏览 评分: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 评论 221 浏览 评分: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 评论 309 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 327 浏览 评分:0.0
绝对值排序(C++简易代码) 摘要:解题思路:结构体排序,简便简单;注意事项:参考代码:#include<bits/stdc++.h>using namespace std; long long n,a[100005];int cmp…… 题解列表 2022年05月08日 0 点赞 0 评论 817 浏览 评分:7.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 270 浏览 评分:0.0