摘要: 输入一行字符,输出最长的单词。 #include<stdio.h> #include<string.h> #define N 100 int LongestVoc(char str[]); int Alpha(char c); int main(void){ char str[N]; printf( 阅读全文
posted @ 2024-05-11 16:39 zhongta 阅读(84) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<math.h> #define N 100 void StrVow(char str1[],char str2[]); int main(void){ char str1[N],str2[N]; printf("input first strin 阅读全文
posted @ 2024-05-11 15:32 zhongta 阅读(10) 评论(0) 推荐(0)