摘要:
輸入一個文本,找出所有不同的單詞(連續的字母序列),按字典序從小到大輸出。單 詞不區分大小寫。 樣例輸入: Adventures in Disneyland Two blondes were going to Disneyland when they came to a fork in the ro 閱讀全文
摘要:
①常用的函數及庫 ②小心使用全局變量 例如: #include<cstdio> int g = 0; int f() { g++; return g; } //修改全局變量的函數 int main() { int a = f(); int b = f(); printf("%d %d\n", a, 閱讀全文