题解列表
题目 1434: 蓝桥杯历届试题-回文数字题解
摘要:1.解题思路先把每个从10000~999999的数都查一遍,输出和为n且是回文数的。确定回文数的方法:有一个数,例如t=i=1331,把末位放到num的末尾,当t小于1时停止。(1331,0)->(1……
1033题: 自定义函数之字符提取
摘要:# 自己写的代码
```c
#include
#include
void fun(a[]){
char b[20];
}
int main()
{
ch……
1034题: 自定义函数之数字分离
摘要:# 自己写的代码
```c
#include
int main(){
char a[5];
gets(a);
for(int i=0;i……
1035题: 自定义函数之字符类型统计
摘要:# 自己写的代码(稍有瑕疵,输出不在主函数中)
```c
#include
#include
int tongji(char a[]){
int z=0,s=0,k=0,q=0,……