給定乙個單詞,從字典查詢該單詞的所有兄弟單詞。

2021-09-08 21:45:38 字數 895 閱讀 2628

static void main(string args) ;

vocabularys = getbrothervocabularys(vocabularys, "army");

console.writeline("the vocabularies of army's brother vocabulary are :");

foreach (string vocabulary in vocabularys)

", vocabulary); }

console.read(); }

///

/// 把乙個字串單詞轉化為乙個字元列表

///

///

///

private static ilistgetcharlistbyvoca(string vocabulary)

///

/// 給定乙個字串陣列,返回該陣列中的是給定字串的兄弟字串的那些字串

///

/// 字串陣列

/// 給定字串

///

private static string getbrothervocabularys(string vocabularys, string keyvocabulary)

} }

return lst.toarray(); }

private static bool isbrothervoca(string vocabulary, ilistkeyvocacharlist)

i++; }

return flag; }

執行結果如下:

給定字串返回最後乙個單詞的長度

問題描述 給定乙個僅包含大小寫字母和空格 的字串,返回其最後乙個單詞的長度。如果不存在最後乙個單詞,請返回 0 說明 乙個單詞是指由字母組成,但不包含任何空格的字串。示例 輸入 hello world 輸出 5 param s return 兩種方法,第一種 判斷全部是否為空格,是空格返回0,否則返...

最後乙個單詞的長度

給定由大寫,小寫字母和空格組成的字串,返回最後乙個單詞的長度。如果輸入中不存在單詞,返回 000。注意 單詞 是指不包含空格符號的字串 例如 對於字串 hello world 不帶引號 那麼返回的結果是 555 對於字串 abc abc 不帶引號 那麼返回的結果就是 333。輸入格式 輸入僅一行,為...

返回乙個單詞的字首

1,字首 就是能夠代表這個單詞的前n個字元,n最小.如 abc acc 字首 ab ac 語法的悲劇,讓我整整浪費了乙個上午,鬱悶了乙個下午.問題終於還是找到了.基於string的實現 include include include include using namespace std class...