请前辈多多指教,关于程序中的变量的作用问题!!!
#include <iostream>#include <cstring>
using namespace std;
int main()
{
char string;
int i,num=0,word=0;
char c;
while(gets(string))
{ num = 0, word = 0;//初始化不能忘
for(i=0;(c=string)!='\0';i++)
{
if(c==' ') word=0;//第一个出现的空格不计入
else if(word==0)
{
word=1;
num++;
}
}
printf("There are %d words in the line\n",num);
}
return 0;
}
//请问这段程序中的word这个变量起什么作用???
本帖最后由 oggplay 于 2014-3-1 13:38 编辑
首先,你用了using namespace 然后你又调用了printf()函数而没有用cout和#include <stdio.h>,你想干什么?
第二 word变量就是起个开关作用。例如:hello world cup 这句话有2个空格,num=3
jljklljkfdsaffdfs fdsf fdsf这句有5句话4个空格,num=5 oggplay 发表于 2014-3-1 13:33 static/image/common/back.gif
首先,你用了using namespace 然后你又调用了printf()函数而没有用cout和#include ,你想干什么?
第二 wo ...
看懂了,多谢提醒下次会注意的。因为我接着先前一个文件打的,忘了改头文件,但这样也能运行啊,是不是有什么风险?
页:
[1]