摘要: #include <stdio.h> #include <string.h> int * getarr(int * ipt); int main() { int a = 99; char * ch ; int *p = getarr(&a); //gets(ch); printf("%d\n", * 阅读全文
posted @ 2021-07-02 20:04 学而不思则罔! 阅读(227) 评论(0) 推荐(0)
摘要: #!/usr/bin/python # -*- coding: UTF-8 -*- #get_min_char 获取指定字符串中最小的字符 def get_min_char(str): min = str[0]; for ch in str: if( min > ch ): min = ch ret 阅读全文
posted @ 2021-07-02 15:59 学而不思则罔! 阅读(31) 评论(0) 推荐(0)