[C]字符統計

C語言統計英文字母、空格、數字和其它字符的數目 #define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> int main() { char c; int letters = 0, space = 0, digit = 0, others = 0;
相關文章
相關標籤/搜索