1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char str[200]; int i; …… 题解列表 2022年02月13日 0 点赞 0 评论 75 浏览 评分:0.0
gets函数,简单循环 摘要:解题思路:注意事项:参考代码: #include <stdio.h> #include <string.h> int main() { char a[205]; gets(a); int len…… 题解列表 2022年02月09日 0 点赞 0 评论 379 浏览 评分:9.9
if~else if处理和正则表达式处理 摘要:解题思路:首先可以想到将字符串转化为字符数组,再用if~else if判断统计。再次思考可以想到能用正则表达式来匹配字符串中的字符类型。注意事项:字符串类型输入需要使用nextLine(),因为输入字…… 题解列表 2022年01月22日 0 点赞 0 评论 598 浏览 评分:0.0
[编程入门]字符串分类统计(数组法) 摘要:解题思路:就是字符没学好,所以直接用数组和一些字符函数来解决注意事项:最好用gets函数,不要写个循环把字符一个个输进去,容易错参考代码:#include<stdio.h>#include<strin…… 题解列表 2022年01月09日 0 点赞 0 评论 242 浏览 评分:9.9
[编程入门]字符串分类统计-题解(Python代码) 摘要:解题思路:注意事项:参考代码:s=input()A1=0A2=0A3=0A4=0for i in s: if (i>='A' and i<='Z')or(i>=&…… 题解列表 2021年12月29日 0 点赞 0 评论 292 浏览 评分:8.4
c语言编写题解 1012: [编程入门]字符串分类统计 摘要:解题思路:如果符合在字母范围内,就加一; 如果符合在数字范围内,相应加一; 如果是空格,相应加一; 如果以上都不符合,相应加一; 如何实现加一(即计数)呢,我们…… 题解列表 2021年12月16日 0 点赞 1 评论 330 浏览 评分:6.0
[编程入门]字符串分类统计[Python代码详解] 摘要:参考代码:a=input() #将数据输入b=0 #用于储存数据c=0 #用于储存数据d=0 …… 题解列表 2021年12月15日 0 点赞 2 评论 613 浏览 评分:8.9
1012: [编程入门]字符串分类统计 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2021年12月10日 0 点赞 0 评论 160 浏览 评分:0.0
字符判断(C语言) 摘要:解题思路:看到字符读取,很容易想到c语言读取字符用的getcher(),利用字符所代表的ascll码判断字符类型并计数完成习题。注意事项:ascll码别弄错参考代码:…… 题解列表 2021年11月27日 0 点赞 0 评论 162 浏览 评分:0.0
字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() {int a=0,b=0,c=0,d=0;char ch;while((ch=getchar())!='…… 题解列表 2021年11月15日 0 点赞 1 评论 191 浏览 评分:9.9