题目 写出一个程序,接受一个由字母和数字组成的字符串,和一个字符,然后输出输入字符串中含有该字符的个数。不区分大小写。 思路 先输入一个字符串,然后输入一个字符 getline 和 getchar 函数,不区分大小写意味着在匹配时需要转化为相同的形式 c++ #include "iostream" #include <string> #include <ctype.h> using namespace std; int main() { string str; char word; int find_wordCount = 0; int...