2868-最长最短单词
摘要:解题思路:注意事项:请各位朋友帮忙指正,测试的时候只有91分。参考代码:struct Test{
char s[105];
int n;
};
int main(){
struct T……
2868: 最长最短单词(C语言)
摘要: #include
#include
int main()
{
char a[2000];
gets(a);
char word[100];//用于储存当前的单词……
最长最短单词(用二维数组存储,把每个单词分隔开来,就好做多了)
摘要:参考代码:
```c
#include
#include
int main()
{
char a[201][101];
int k=0;
int max=0,max_index=……
输入1行句子(不多于200个单词,每个单词长度不超过100),包含字母、空格、逗号、引号等。单词由至少一个连续的字母构成,空格和逗号都是单词间的间隔。 试输出第1个最长的单词和第1个最短单词。
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,len,maxlen=-1,minlen=1000,m……
for循环和while循环
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char x[1000]; char s[……