编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 170 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 219 浏览 评分:0.0
字符串分类统计 题解(简单啦) 摘要:解题思路:输入字符串,判断,计数,输出,欧了。注意事项:要用getline输入!参考代码:#include<bits/stdc++.h>using namespace std;string s;int…… 题解列表 2022年05月08日 0 点赞 0 评论 150 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:a = 0b = 0c = 0d = 0e = input()for i in e: if i.isalpha(): a+=1 elif i.i…… 题解列表 2022年05月08日 0 点赞 0 评论 202 浏览 评分:0.0
1012: [编程入门]字符串分类统计 摘要:#include<stdio.h> int main() { char c[200];int num=0,let=0,pace=0,el=0; gets(c); int len=str…… 题解列表 2022年06月05日 0 点赞 0 评论 168 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:str1=input()mu,number,kong,n=0,0,0,0list=["0","1","2","3","4","5","6","7","8","9"]for…… 题解列表 2022年06月14日 0 点赞 0 评论 408 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2022年07月14日 0 点赞 0 评论 219 浏览 评分:0.0
题解 1012: [编程入门]字符串分类统计(C语言,有所疑问望解答,感谢感谢) 摘要:各位XDM又卡了,心塞塞~~~除了比大小的右边比较标准,其他的都没改,我是对照着ACSII表写的啊,不明白为啥会卡……在DEVC++和在线运行中都是通过的,一提交它就错了。得分50的代码:#inclu…… 题解列表 2022年07月23日 0 点赞 0 评论 484 浏览 评分:0.0
字符串分类统计 摘要:解题思路:运用while循环输入字符,换行终止输入,if else语句进行计数,较为简便注意事项:while循环输入时用&&语句终止循环注意终止符号。参考代码:#include<stdio.h>int…… 题解列表 2022年07月25日 0 点赞 0 评论 151 浏览 评分:0.0
字符串分类统计 摘要: #include using namespace std; int main() { int num = 0, letter = 0, space =…… 题解列表 2022年10月10日 0 点赞 0 评论 97 浏览 评分:0.0