摘要: 链接:https://pan.baidu.com/s/1B8e96_hbC4COeNxYnXp68A 提取码:dv4y 阅读全文
posted @ 2020-07-13 18:44 ethon-wang 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 链接:https://pan.baidu.com/s/1kx-Ks0Tu10WTCGjTIM8iaA 提取码:7gu1 阅读全文
posted @ 2020-07-13 15:31 ethon-wang 阅读(109) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> void traToPlu(char ch[]) { int len = strlen(ch), i; char es[] = "es", s[] = "s", *p; if ('y' == ch[len - 1]) { 阅读全文
posted @ 2020-06-30 17:12 ethon-wang 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-19 10:00 ethon-wang 阅读(85) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int move(int n,int from, int to,int through); int count=0; int main() { move(3,'A','C','B'); return 0; } int move(int n,int from, i 阅读全文
posted @ 2020-05-05 11:06 ethon-wang 阅读(128) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <math.h> #define N 4 int GetMax( int a[]); int GetMin( int a[]); int check(int n); int idigit(int n,int a[]); void is_kabu 阅读全文
posted @ 2020-04-21 15:25 ethon-wang 阅读(532) 评论(0) 推荐(0) 编辑
摘要: /* * 任务描述:给定一个长字符串和一个短字符串,找出短串在长串中出现的次数, * 并输出每次长串中出现短串的起始位置。(可用字符串相关函数简化编程工作) */ #include<stdio.h> #include <string.h> #define MAX 500 int main() { c 阅读全文
posted @ 2020-04-18 11:35 ethon-wang 阅读(796) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int oneYuan,towYuan, fiveYuan,count=0; int sum_money; scanf("%d",&sum_money); int mostOne = sum_money - 7,mostTow = (s 阅读全文
posted @ 2020-04-04 19:01 ethon-wang 阅读(454) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int a[20001];//储存每一位所得到的数 int temp,base,digit,power,i,j=0;//temp每次的得数 digit每次得数的位数 power是幂指数,base是底数 printf("type the 阅读全文
posted @ 2020-03-21 14:17 ethon-wang 阅读(245) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int a[20001];//储存每一位所得到的数 int temp,digit,n,i,j=0;//temp每次的得数 digit每次得数的位数 scanf("%d",&n); a[0]=1;//从1开始乘 digit=1;//位数从 阅读全文
posted @ 2020-03-19 15:52 ethon-wang 阅读(158) 评论(0) 推荐(0) 编辑