- 论坛徽章:
- 0
|
#include <stdio.h>
#include <ctype.h>
#define MAX 1000
void find_word(char *);
int main(void)
{
char s[MAX];
int i,ch;
i=0;
while((ch=getchar()) && ch!=EOF)
s[i++]=ch;
s[i]='\0';
find_word(s);
puts(s);
return 0;
}
void find_word(char *str)
{
int flag=0;
if(isspace(*str))
flag=1;
while(*str)
{
while(isspace(*str) && flag)
str++;
while(! isspace(*str))
str++;
*str='\0';
}
}
Design and test a function that reads the first word from a line of input into an array and discards the rest of the line. Define a word as a sequence of characters with no blanks, tabs, or newlines in it.
输入一串字符,找出第一个单词,应该实现了基本功能,但是感觉不是很好,求大神指点下? |
|