判断输入
如果我要输入一段文章到数组,要求用#号结束输入,怎么判断?
#include <stdio.h>
#include <string.h>
main()
{
char a[100] = {0};
while(scanf("%s", a))
{
if(a[strlen(a) - 1] == '#')
break;
}
}
[ 本帖最后由 xy4919961 于 2009-11-25 14:05 编辑 ]