harumakigohan686

2023年1月6日

#CP1046. 离5的倍数最远的因子

摘要: 练了练双向搜索,很有意义的尝试 俺的做法: #include <stdio.h> #include<stdlib.h> #include <ctype.h> #include <string.h> int main() { int n,m=0,x=0; int p; int a[100]; int 阅读全文

posted @ 2023-01-06 21:55 harumakigohan 阅读(24) 评论(0) 推荐(0)
这里先埋个坑(

摘要: #CP1025. 陈述句变成疑问句 还是有点小bug后面再调吧 #include <stdio.h> #include <ctype.h> #include <string.h> int main() { char a[100]; char b[100]; //第一个单词 char c[100]; 阅读全文

posted @ 2023-01-06 11:08 harumakigohan 阅读(23) 评论(0) 推荐(0)
#ACM2021_23. 摘柿子 and#ACM2021_34. 幸运数字

摘要: #ACM2021_23. 摘柿子:一道很简单的排序题,估计是送分题( 俺的做法: #include <stdio.h> #include <stdlib.h> #define N 100 #define M 100 int main() { int n;//n为柿子个数 int a[100];//敲 阅读全文

posted @ 2023-01-06 10:31 harumakigohan 阅读(28) 评论(0) 推荐(0)