分享查找字符串内字符类型代码 摘要:解题思路:发现这道题简单,但是写起来麻烦,分享给大家帮助大家快速通过。注意事项:若有看不懂的地方,及时评论哦!参考代码:#include<stdio.h>int main(){ char tex…… 题解列表 2023年12月10日 0 点赞 0 评论 94 浏览 评分:0.0
优优优质题解!!!!! 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { int zimu =0; int shuzi =0; int kong…… 题解列表 2023年12月10日 0 点赞 0 评论 99 浏览 评分:0.0
getchar解决问题 摘要:解题思路:先输入再用字符比较注意事项:i与j的比较参考代码:#include <stdio.h>int main(){ int word = 0, number = 0, tab = 0, other…… 题解列表 2023年12月07日 0 点赞 0 评论 67 浏览 评分:0.0
1012字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){char c;int letters=0,space=0,dight=0,other=0;while((c=ge…… 题解列表 2023年12月05日 0 点赞 0 评论 92 浏览 评分:0.0
]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[200]; gets(a); int i,zimu=0,shuzi=0,kong…… 题解列表 2023年11月30日 0 点赞 0 评论 60 浏览 评分:0.0
c++编写字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(void){ int num=0,space=0,word=0,other=…… 题解列表 2023年11月30日 0 点赞 0 评论 90 浏览 评分:0.0
统计值,使用ASCII对应的值或者使用 ' ' 单引号内加所需要的 摘要:解题思路:统计值本题牵扯到的知识点有1如何访问一维字符型数组的所有元素2如何表示数字字符 使用ASCII对应的值或者使用 ' ' 单引号内加所需要的第一种:a[i]>=’0’&&a[…… 题解列表 2023年11月27日 0 点赞 0 评论 47 浏览 评分:0.0
1012c语言代码 摘要:解题思路:注意事项:1,一定要记得初始化;2,回车键也算输入字符;参考代码:#include<stdio.h>int main(){ char a; int b=0,c=0,d=0,e=0; whil…… 题解列表 2023年11月06日 0 点赞 0 评论 86 浏览 评分:0.0
字符串分类统计 摘要:解题思路:注意事项:这段代码没有考虑输入字符串中的特殊字符、标点符号等情况。它只会统计字母、数字、空格和其他字符的个数。参考代码:#include <stdio.h> #include <strin…… 题解列表 2023年11月04日 0 点赞 0 评论 125 浏览 评分:9.9
c代码记录之字符串分类统计 摘要:解题思路:注意事项:scanf遇到空格停止读取输入,所以使用gets遍历到\0停止,因为字符串结尾默认\0参考代码:#include<stdio.h> int main() { char…… 题解列表 2023年10月31日 0 点赞 0 评论 43 浏览 评分:0.0