编写题解 1530: 蓝桥杯算法提高VIP-数字黑洞 摘要:解题思路:主要是字符串和整数,数组和字符串,String和StringBuffer类型之间的转换,搞清楚就很简单了,逻辑上转得有点复杂,需要耐心去体体验注意事项:参考代码:package Test;i…… 题解列表 2022年06月13日 0 点赞 0 评论 344 浏览 评分:0.0
1041: [编程入门]宏定义之找最大数(指针函数的应用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define max(a,b,c) mx=a>b?a:b;mx=mx>c?mx:c; void ma(float a,float…… 题解列表 2022年06月14日 0 点赞 0 评论 411 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char ch; while((ch=getchar())!=EOF){ …… 题解列表 2022年06月14日 0 点赞 0 评论 277 浏览 评分:0.0
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a>b){ …… 题解列表 2022年06月14日 0 点赞 0 评论 220 浏览 评分:0.0
编写题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())max=aif max<b: max=b if max<c: max=celse: …… 题解列表 2022年06月14日 0 点赞 0 评论 448 浏览 评分:0.0
1044: [编程入门]三个字符串的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> #include<ctype.h> int main() { char str…… 题解列表 2022年06月14日 0 点赞 0 评论 282 浏览 评分:0.0
1045: [编程入门]自定义函数之整数处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void chan(int lis[]){ int max=0,ma=0,min=0,mi=0; for(int…… 题解列表 2022年06月14日 0 点赞 0 评论 231 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:str1=input()mu,number,kong,n=0,0,0,0list=["0","1","2","3","4","5","6","7","8","9"]for…… 题解列表 2022年06月14日 0 点赞 0 评论 546 浏览 评分:0.0
1045: [编程入门]自定义函数之整数处理(C语言指针函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void swap(int num[]){ int *max=&num[0],*min=&num[0],ma,mi; …… 题解列表 2022年06月15日 0 点赞 0 评论 206 浏览 评分:0.0
1046: [编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#includevoid chag(int n,int m,int num[]){ int lis[n],i; for(i=0;i<m;i++){ …… 题解列表 2022年06月15日 0 点赞 0 评论 215 浏览 评分:0.0