利用字符串,指针和ASII表进行统计 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; i…… 题解列表 2023年12月21日 1 点赞 0 评论 67 浏览 评分:0.0
c++,cin.get()解法 摘要:解题思路:cin.get()读到行的最后一个,但是不读入回车,因此,通过读到null终止循环。注意事项:参考代码:#include<iostream>#include<string>using nam…… 题解列表 2021年07月31日 0 点赞 0 评论 327 浏览 评分:0.0
题解 1012: [编程入门]字符串分类统计(C语言,有所疑问望解答,感谢感谢) 摘要:各位XDM又卡了,心塞塞~~~除了比大小的右边比较标准,其他的都没改,我是对照着ACSII表写的啊,不明白为啥会卡……在DEVC++和在线运行中都是通过的,一提交它就错了。得分50的代码:#inclu…… 题解列表 2022年07月23日 0 点赞 0 评论 445 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:int main(){ //思路是通过各类型字符的ASCLL码的范围来确定输入的字符的类型。int a=0, b=0, c=0, d=0; char s; whil…… 题解列表 2017年06月08日 31 点赞 11 评论 3250 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:解题思路注意事项:参考代码:#include<stdio.h>int main(){ char n; int q=0,w=0,e=0,r=0; while((n=getchar())…… 题解列表 2020年10月11日 0 点赞 0 评论 137 浏览 评分:0.0
[编程入门]字符串分类统计-题解(Java代码) 摘要:```java import java.util.Scanner; /** * https://www.dotcpp.com/oj/problem1012.html * @author…… 题解列表 2019年07月31日 0 点赞 0 评论 595 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) (简单易懂) 摘要:解题思路:注意事项:输入函数用scanf要注意回车键,要加上getchar()提取回车符。参考代码#include <stdio.h>#include <string.h>int i;int main…… 题解列表 2020年11月26日 0 点赞 0 评论 689 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:#include<stdio.h> int main() { char c[100],number1=0,number2=0,number3=0,number4=0,number5=0; …… 题解列表 2017年12月25日 4 点赞 0 评论 1149 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 117 浏览 评分: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 评论 94 浏览 评分:0.0