编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 210 浏览 评分:0.0
字符串内排序 题解(超简单) 摘要:解题思路:不就是个字符串中的字符排个序嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;char a[1005];int m…… 题解列表 2022年05月08日 0 点赞 0 评论 314 浏览 评分:0.0
整数奇偶排序 题解(c++简单) 摘要:解题思路:这题错了那么多次,我无语了。直接上菜。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,x[1005],y[1005]…… 题解列表 2022年05月08日 0 点赞 0 评论 1131 浏览 评分:2.5
蓝桥杯算法提高VIP-陶陶摘苹果2-题解(C++代码) 摘要:解题思路:思路见程序注意事项:输出的是不能摘的!!!!!参考代码:#include<bits/stdc++.h>int main(){ int n; int b;//手伸直能达到的最大高度 in…… 题解列表 2022年05月08日 0 点赞 0 评论 272 浏览 评分:9.9
编写题解 1009: [编程入门]数字的处理与判断 摘要:#include<iostream> using namespace std; int main() { int num[5]; //定义一个有 5 个元素的数组 int …… 题解列表 2022年05月07日 0 点赞 0 评论 221 浏览 评分:0.0
编写题解 1008: [编程入门]成绩评定 摘要:#include <iostream> using namespace std; int a; int main() { cin>>a; switch(a/10){ case 10:co…… 题解列表 2022年05月07日 0 点赞 0 评论 225 浏览 评分:0.0
编写题解 1007: [编程入门]分段函数求值 摘要:#include<iostream> using namespace std; int main() { int x,y; cin>>x; if(x<1){ …… 题解列表 2022年05月07日 0 点赞 0 评论 257 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:#include <iostream>using namespace std;string a;int main(){ cin>>a; for(int i=0;i<=a.size()-1;i++) …… 题解列表 2022年05月07日 0 点赞 0 评论 232 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值 摘要:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; cout<<max(max(a,…… 题解列表 2022年05月07日 0 点赞 0 评论 196 浏览 评分:0.0
编写题解 1001: [编程入门]第一个HelloWorld程序 摘要:#include <iostream> using namespace std; int main() { cout<<"**************************"<<en…… 题解列表 2022年05月07日 0 点赞 0 评论 156 浏览 评分:0.0