校门外的树-用两个数组实现-题解(C语言代码) 摘要:/*代码运行结果是对的,但是一直提交都是错误36%,有没有大佬给看看,万分感谢*/ ```c #include #define N 10001 void sort(int *a,int m…… 题解列表 2019年11月21日 0 点赞 0 评论 784 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要: ```c #include #include #include int main(int argc, const char *argv[]) { int i, n…… 题解列表 2019年11月21日 0 点赞 0 评论 1378 浏览 评分:0.0
[编程入门]完数的判断-题解(C语言代码) 摘要:```c #include int main() { int f[100]={},n=0,a; scanf("%d",&a); for(int w=1;w…… 题解列表 2019年11月21日 0 点赞 0 评论 539 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计-题解(C语言代码) 摘要:```c #include #include #define N 1000 void Count(char *p,int a[]); int main() { char st[N]…… 题解列表 2019年11月21日 0 点赞 0 评论 829 浏览 评分:0.0
[编程入门]自定义函数处理素数-题解(Python代码) python 摘要:```python def isprime(x): #判断是否是数素 1:是 0:不是 i=2 while(i*i…… 题解列表 2019年11月21日 0 点赞 0 评论 1262 浏览 评分:0.0
蓝桥杯算法提高VIP-进制转换-题解(C语言代码) 摘要: #include int main() { int s; scanf("%x",&s); printf("%X %d %o",s,…… 题解列表 2019年11月21日 0 点赞 0 评论 721 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计-题解(Python代码) python 摘要:```python a=b=c=d=0 #定义 str = input()#输入 for i in str: #遍历判断 if i>='a'and i='A' and i='0' …… 题解列表 2019年11月21日 0 点赞 0 评论 1330 浏览 评分:0.0
[编程入门]三个数字的排序-题解(C语言代码) 三个判断!! 摘要:```c #include int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a…… 题解列表 2019年11月21日 0 点赞 0 评论 1578 浏览 评分:0.0
[编程入门]自定义函数之数字分离 (Python代码) 摘要:## 自定义函数之数字分离 a=input() print(' '.join(a))#join函数用于将序列中的元素以指定的字符连接生成一个新的字符串。 ``` a=input() p…… 题解列表 2019年11月22日 0 点赞 0 评论 1198 浏览 评分:0.0
[编程入门]宏定义之闰年判断-题解(Python代码)python 摘要:\```python num = int(input())#输入并且转换为整型 if num%4==0 and num%100!=0 or num%400==0: #判断是否是闰年 pr…… 题解列表 2019年11月22日 0 点赞 0 评论 1520 浏览 评分:0.0