words.append(word) #记录已统计的单词def func(value, ops): for function in ops: value = function(value)operators = 填空 func(txt, operators)知识点:函数式编程 A. [str.lower, str.split, word_count] B. [lower, split, word_count] C. [str.split, str.lower, word_count] D. [split,...
[改错]函数fun的功能是:分别统计字符串中大写字母和小写字母的个数。例如,给字符串s输入:AaaaBBb123CCccccd,则应输出结果:upper=5,lower=9。 [答案][1]void fun(char *s, int *a, int *b) [2](*a)++;[3] (*b)++; [编程]请编写函数fun,其功能是:计算并输出当x<0.97时,如下...