超简短,通俗易懂的代码 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char s[109]; int len; …… 题解列表 2021年12月09日 0 点赞 0 评论 355 浏览 评分:9.9
编写题解 1059: 二级C语言-等差数列 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a=2,sum=0; cin>>n; f…… 题解列表 2021年12月09日 0 点赞 0 评论 336 浏览 评分:0.0
编写题解 1061: 二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[20]; int n=0,s=0,b=0; …… 题解列表 2021年12月09日 0 点赞 0 评论 324 浏览 评分:0.0
编写题解 1060: 二级C语言-同因查找 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for(int a=10;a<1000;a++) { …… 题解列表 2021年12月09日 0 点赞 0 评论 217 浏览 评分:0.0
关于蓝桥杯真题——DNA问题的解法 摘要:解题思路:我在这将DNA分解为了三个部分即一个正的三角形的输出,一个倒三角形的输出,和最后一行的输出。关于这题更简单的方式可以直接划分成两个部分即最后一行的输出和其他部分的输出这里不进行说明。当然还有…… 题解列表 2021年12月09日 0 点赞 0 评论 636 浏览 评分:0.0
编写题解 1058: 二级C语言-求偶数和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[50],s=0; int n; cin>…… 题解列表 2021年12月09日 0 点赞 0 评论 247 浏览 评分:0.0
编写题解 1057: 二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double x,y; cin>>x; if(x<1…… 题解列表 2021年12月09日 0 点赞 0 评论 462 浏览 评分:0.0
编写题解 1056: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double a,b; cin>>a; b=(a-3…… 题解列表 2021年12月09日 0 点赞 0 评论 347 浏览 评分:0.0
编写题解 1053: 二级C语言-平均值计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; int s=0,b,n=0; …… 题解列表 2021年12月09日 0 点赞 0 评论 215 浏览 评分:0.0
编写题解 1040: [编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double e; cin>>e; for(int …… 题解列表 2021年12月09日 0 点赞 0 评论 245 浏览 评分:0.0