内码对称-题解(C语言代码) 摘要:解题思路:注意事项:参考代码://内码对称#include<stdio.h>int cheak(long long int num);/********************************…… 题解列表 2020年12月03日 0 点赞 0 评论 1340 浏览 评分:6.0
大神老白-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,sum; int a[100]; while((scanf("%d",&n))!=EOF){ …… 题解列表 2020年12月03日 0 点赞 2 评论 1036 浏览 评分:6.0
数据结构-字符串连接-题解(C语言代码) 摘要:解题思路:这里用调用函数可以使程序更简洁注意事项:参考代码:#include#includeint main(){ int check (char x[1000], int b );//对被调用…… 题解列表 2020年12月05日 0 点赞 1 评论 1250 浏览 评分:6.0
字符串的修改-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(void) { char a[200]; char b[200]…… 题解列表 2020年12月05日 0 点赞 3 评论 863 浏览 评分:6.0
蓝桥杯算法训练VIP-黑色星期五-题解(C语言代码) 摘要:```cpp #include using namespace std; int M[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int ma…… 题解列表 2020年12月06日 0 点赞 0 评论 878 浏览 评分:6.0
蓝桥杯算法训练VIP-字符删除-题解(C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){ char a[20],b; int n,i,j=0; gets(a); n=strlen(a); scan…… 题解列表 2020年12月06日 0 点赞 0 评论 920 浏览 评分:6.0
蓝桥杯2013年第四届真题-大臣的旅费-题解(C++代码) 摘要:#### 这一题真是搞人心态,用邻接矩阵居然爆栈 #### 那就原始邻接表和vector邻接表; ```javascript #include using namespace std; #d…… 题解列表 2020年12月07日 0 点赞 0 评论 655 浏览 评分:6.0
去掉空格-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c[80], i; while (gets(c)) { for (i = 0; c[i] != &#…… 题解列表 2020年12月10日 0 点赞 0 评论 878 浏览 评分:6.0
[编程入门]自由下落的距离计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ float M,N,i,o; float a,b,c=0,sum=0; scanf("%f%f",&M,&N); o=M…… 题解列表 2020年12月10日 0 点赞 0 评论 447 浏览 评分:6.0
C语言训练-谁家孩子跑最慢* -题解(C语言代码) 摘要:解题思路:没思路,瞎尝试,寻求捷径注意事项:大家不要学我哦参考代码:#include<stdio.h>int main(){ printf("W");}…… 题解列表 2020年12月10日 0 点赞 0 评论 445 浏览 评分:6.0