摘要:
输入一个文本,找出所有不同的单词(连续的字母序列),按字典序从小到大输出。单 词不区分大小写。 样例输入: 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, 阅读全文