回文判断-题解(C语言代码) 详细讲解! 思路清晰 简单易懂! 摘要:解题思路:首先用到字符串函数 记得写头文件注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int i,n,j=1; char …… 题解列表 2020年11月29日 0 点赞 0 评论 938 浏览 评分:6.0
蓝桥杯算法提高-矩阵转置-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20][20]; int n,m,i,j,temp,max; scanf("%d%d",&n,&m)…… 题解列表 2020年12月01日 0 点赞 0 评论 1060 浏览 评分:6.0
[编程入门]第一个HelloWorld程序!-题解(Python代码) 摘要:解题思路:注意事项:参考代码:print("**************************")print("Hello World!")print("**********************…… 题解列表 2020年12月01日 0 点赞 0 评论 1194 浏览 评分:6.0
[编程入门]数字逆序输出-题解(C语言代码) 摘要:解题思路:通过for循环就可以直接搞定注意事项:开始的i得取0值。参考代码:#include<stdio.h>int main(){ int woqu[10]={0}; int i = 0…… 题解列表 2020年12月03日 0 点赞 0 评论 556 浏览 评分:6.0
内码对称-题解(C语言代码) 摘要:解题思路:注意事项:参考代码://内码对称#include<stdio.h>int cheak(long long int num);/********************************…… 题解列表 2020年12月03日 0 点赞 0 评论 1344 浏览 评分: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 评论 1045 浏览 评分:6.0
数据结构-字符串连接-题解(C语言代码) 摘要:解题思路:这里用调用函数可以使程序更简洁注意事项:参考代码:#include#includeint main(){ int check (char x[1000], int b );//对被调用…… 题解列表 2020年12月05日 0 点赞 1 评论 1251 浏览 评分:6.0
字符串的修改-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(void) { char a[200]; char b[200]…… 题解列表 2020年12月05日 0 点赞 3 评论 870 浏览 评分: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 评论 882 浏览 评分: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 评论 928 浏览 评分:6.0