時間限制: 10 sec
記憶體限制: 128 mb
neo 給你一系列字串,請你輸出字串中的不同單詞個數以及總單詞個數。
多組輸入,每組資料都是一行字串(長度小於200),其中每個單詞以空格隔開(單詞都是小寫字母組成)。
輸出字串中的不同單詞個數以及總單詞個數。
i love chinaaa aa bb
3 32 3#include#include#include#define maxn 205
using namespace std;
char s[maxn][maxn],t[maxn],c;//s[maxn][maxn]用來存放不同的單詞 ,統計個數。t用來存放每次剛輸入的單詞
int main()
{ int num,pre;
while(scanf("%s%c",s[0],&c)!=eof)
{num = 1,pre = 1;
while(c != '\n')
{scanf("%s%c",t,&c);
bool same = false;
for(int i = 0;i
統計單詞數
include include include include include includeusing namespace std struct node int main else if s.find 1 transform s.begin s.end s.begin toupper sourc...
記錄不同單詞數目
include include int main char c,str 1000 1000 flag 0,count int x,y,i,j while 1 else count 0 for i 0 i x i if str i 0 count for j i 1 j x j if strcmp s...
題解 統計字串中單詞數目
題目 輸入一行字元,統計其中有多少個單詞,每兩個單詞之間以空格隔開。如輸入 this is a c program.輸出 there are 5 words in the line.本講結構 二 相關習題 四 其他寫法的 正文 針對乙個剛讀入的符號如何判斷?二 相關習題 2.輸入一行字元,統計其中有...