摘要: include<stdio.h> //int my_strlen(char* str) //{ // int count=0; // while(str != '\0') // { // count++; // str++; // } // return count; // } // 递归方法 in 阅读全文
posted @ 2024-01-12 20:32 累die 阅读(2) 评论(0) 推荐(0) 编辑
摘要: include<stdio.h> //int is_prime(int n) //{ //int m; //for(m=2;m<n;m++) //{ // if(n%m0) //return 0; //} //return 1; //} //int main() //{ // int i=0; // 阅读全文
posted @ 2024-01-12 09:12 累die 阅读(3) 评论(0) 推荐(0) 编辑