摘要: https://www.cnblogs.com/pylearner/p/10903266.html 阅读全文
posted @ 2020-06-05 23:58 xuecl 阅读(345) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> void main(void) { if (printf("hello world!")) {} } 阅读全文
posted @ 2020-06-05 23:56 xuecl 阅读(219) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void fun(char *a){ if(*a == '\0'){ return ; } fun(a+1); printf("%c",*a); } int main(){ char s[] = {'a','b','c','d','e'}; fun(s); ret 阅读全文
posted @ 2020-06-05 23:51 xuecl 阅读(1082) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void fun(char *str,int len){ for(int i=0;i<len/2;i++){ char temp = str[i];str[i] = str[len-1-i]; str[len-1-i] = temp; } for(int i=0; 阅读全文
posted @ 2020-06-05 23:50 xuecl 阅读(234) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Anker/archive/2013/03/09/2951878.html 阅读全文
posted @ 2020-06-05 00:34 xuecl 阅读(140) 评论(0) 推荐(0) 编辑