[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str1[100]={0},str2[50]={0}; get…… 题解列表 2020年07月21日 0 点赞 0 评论 504 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char str[100]; int i; gets(str); for(i=0;i<100;i++){ i…… 题解列表 2020年07月21日 0 点赞 0 评论 568 浏览 评分:0.0
C语言训练-数字母-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char str[100],t; int i=0,sum=0; gets(str); while(str[i]…… 题解列表 2020年07月21日 0 点赞 0 评论 601 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[4][100]; int i,j; gets(str[…… 题解列表 2020年07月21日 0 点赞 0 评论 548 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[100]; int i; gets(str); for…… 题解列表 2020年07月21日 0 点赞 0 评论 553 浏览 评分:0.0
蓝桥杯算法提高VIP-最长公共子序列-题解(C语言代码) 摘要:https://blog.csdn.net/qq_43424037/article/details/107029364 可以参考这个人的文章,文章后面还有她的视频讲解的链接,个人觉得她讲的蛮好的,声音…… 题解列表 2020年07月21日 0 点赞 0 评论 884 浏览 评分:0.0
蓝桥杯算法提高VIP-数字黑洞-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static vo…… 题解列表 2020年07月21日 0 点赞 0 评论 1185 浏览 评分:0.0
蓝桥杯2013年第四届真题-买不到的数目-题解(C语言代码) 摘要:#include <stdio.h> int c[9000001]; int main() { int a,b,i; scanf("%d%d",&a,&b); if(a>b) //…… 题解列表 2020年07月21日 0 点赞 0 评论 1133 浏览 评分:0.0
蓝桥杯算法提高VIP-3-2求存款-题解(C语言代码) 摘要:``` #include int main() { float a,b; scanf("%f %f",&a,&b); float l = a*b*0.01; float n…… 题解列表 2020年07月21日 0 点赞 0 评论 661 浏览 评分:0.0
蓝桥杯算法提高VIP-栅格打印问题-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2020年07月21日 0 点赞 0 评论 775 浏览 评分:0.0