C++程序改错题,程序要求输入一行字符串,统计其中单词个数,单词之间可用一个或多个空格隔开。
#include<iostream.h>//1#include<string.h>//2voidmain()//3{chars[200];//4intcount,i,j;...
#include<iostream.h> //1
#include<string.h> //2
void main() //3
{ char s[200]; //4
int count,i,j; //5
cout<<"输入一行字符串:\n"; //6
cin<<s; //7
for(count=0,j=strlen(s),i=0;i<j) //8
{ while(s[i]=' '&&i<j) i++; //9
if(i<j) count++; //10
while(s[i]!=' '&&i<j) i++; //11
} //12
cout<<"输入的字符串为:\n"<<s<<endl; //13
cout<<"字符串中包含的单词数为:"<<count<<endl; //14
} //15 展开
#include<string.h> //2
void main() //3
{ char s[200]; //4
int count,i,j; //5
cout<<"输入一行字符串:\n"; //6
cin<<s; //7
for(count=0,j=strlen(s),i=0;i<j) //8
{ while(s[i]=' '&&i<j) i++; //9
if(i<j) count++; //10
while(s[i]!=' '&&i<j) i++; //11
} //12
cout<<"输入的字符串为:\n"<<s<<endl; //13
cout<<"字符串中包含的单词数为:"<<count<<endl; //14
} //15 展开
2个回答
展开全部
问题 c++中最好用string代替char数组 cin>> 不是cin<< 此外cin接受输入时遇到空格即结束 所以这样count只会为1 getline会直到\n才结束,第八行最后少了个; 第九行s[i]=' '应为s[i]==' '这个要牢记
######################我是分隔符#################################
#include <iostream>
#include <string>
using namespace std;
void main()
{
string s;
int count,i,j;
cout<<"输入一行字符串:\n";
getline(cin,s);
for(count=0,j=s.size(),i=0;i<j;)
{
while(s[i]==' '&&i<j) i++;
if(i<j) count++;
while(s[i]!= ' '&&i<j) i++;
}
cout<<"输入的字符串为:\n"<<s<<endl;
cout<<"字符串中包含的单词数为:"<<count<<endl;
}
######################我是分隔符#################################
#include <iostream>
#include <string>
using namespace std;
void main()
{
string s;
int count,i,j;
cout<<"输入一行字符串:\n";
getline(cin,s);
for(count=0,j=s.size(),i=0;i<j;)
{
while(s[i]==' '&&i<j) i++;
if(i<j) count++;
while(s[i]!= ' '&&i<j) i++;
}
cout<<"输入的字符串为:\n"<<s<<endl;
cout<<"字符串中包含的单词数为:"<<count<<endl;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我改的不对,sorry,再看看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询