题解列表

筛选

2005: 去除空格

摘要:解题思路:数组元素左移注意事项:参考代码:#include&nbsp;<stdio.h>#define&nbsp;LEN&nbsp;1000int&nbsp……

2003: 统计字符个数

摘要:解题思路:注意事项:题目交代一串字符,逐个输入,别用gets()参考代码:#include&nbsp;<stdio.h>int&nbsp;main()&nbsp;{……

2006: 寻找奇整数

摘要:解题思路:注意事项:符合其中一个条件就break参考代码:#include&nbsp;<stdio.h>#define&nbsp;LEN&nbsp;15int&am……

1986: 鸡兔同笼

摘要:解题思路:注意事项:参考代码:#include&nbsp;<stdio.h>int&nbsp;main()&nbsp;{int&nbsp;total;sca……

双向循环链表

摘要:#include&nbsp;<bits/stdc++.h>using&nbsp;namespace&nbsp;std;typedef&nbsp;struct……

1999: 回文判断

摘要:解题思路:str[i]==str[len-1-i]恒成立就是回文数注意事项:初始化字符串str、累加数len、判断标记isPal参考代码:#include&nbsp;<stdio.h&g……

1989: 奇数个数

摘要:解题思路:入门题一般定义一个长数组即可。比较字符数字-‘0’的ASCII码值注意事项:参考代码:#include&nbsp;<stdio.h>int&……

1988: 求总时间

摘要:解题思路:cost*=1.05注意事项:参考代码:#include&nbsp;<stdio.h>int&nbsp;main(){float&nbsp;cost=30……