1012: [编程入门]字符串分类统计 摘要:```cpp #include #include #include using namespace std; /* 题目描述 编写一函数,由实参传来一个字符串,统计此字符串中字母、数…… 题解列表 2023年02月23日 0 点赞 1 评论 418 浏览 评分:9.9
LULU——题解 1012: [编程入门]字符串分类统计 摘要:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int main(){ int num=0,lette…… 题解列表 2022年05月10日 0 点赞 0 评论 283 浏览 评分:9.9
使用2个数组+遍历 完成 字符串分类统计 摘要:解题思路:使用一个整型数组 记录每个类型的个数;使用一个字符数组 存储输入的字符串;遍历这个字符数组 并 逐一判断。注意事项:1.整型数组 作为全局变量时,初始化为0; 2.使用 gets() 可以…… 题解列表 2022年04月05日 0 点赞 0 评论 831 浏览 评分:9.9
【kkky】字符串分类统计 摘要:解题思路: 字符数组接收,运用strlen函数得出数组长度,条件遍历计数得出结果注意事项: gets能读取空格 scanf不能读取空格参考代码:#include <iostream>…… 题解列表 2022年07月23日 0 点赞 0 评论 229 浏览 评分:9.9
1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:有个一样的题,要用函数参考代码:#include <iostream> #include <string> using namespace std; int main()…… 题解列表 2022年10月11日 0 点赞 0 评论 228 浏览 评分:9.9
1012: [编程入门]字符串分类统计 摘要:解题思路:这道题就是统计英文字母、数字、空格和其他字符的个数,方法就是遍历输入的字符串,进行判断。注意事项:注意用getline输入。参考代码:#include<bits/stdc++.h>using…… 题解列表 2022年05月13日 0 点赞 0 评论 300 浏览 评分:9.9
1012: [编程入门]字符串分类统计 摘要:解题思路:全部for一遍,并判断。注意事项:1·要用gets,不要用cin,否则读不进空格。 2·判断数字时,要从0开始。参考代码:#include<bits/stdc++.h> using na…… 题解列表 2022年07月11日 0 点赞 2 评论 1022 浏览 评分:9.5
C语言程序设计教程(第三版)课后习题6.2 (C++代码) 摘要:解题思路: 注释注意事项:参考代码:#include<iostream> #include<string> //使用string类 using namespace std; int ma…… 题解列表 2019年04月05日 1 点赞 2 评论 2057 浏览 评分:9.3
[编程入门]字符串分类统计-题解(C++代码) 摘要:解题思路:要是想要写这个代码需要知道的几点:1、gets()可以输入字符串,其头文件为#include <cstring>2、isdigit(str(i))和isalpha(str(i))分别可以判断…… 题解列表 2020年11月09日 0 点赞 2 评论 1571 浏览 评分:9.2
[编程入门]字符串分类统计-题解(C++代码) 摘要: 输入字符并利用ASCII码判断类型 ```cpp #include #include using namespace std; //英文字母、数字、空格和其他字符的个数。 …… 题解列表 2019年07月29日 0 点赞 2 评论 1437 浏览 评分:9.0