1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char str[200]; int i; …… 题解列表 2022年02月13日 0 点赞 0 评论 79 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:本题目主要考察getchar()的应用,同时利用while循环在键盘上输入字符串,直到输入换行符时,循环结束,在while循环内嵌入if...else结构对输入的字符串的字母,数字,空格和其他字符的个…… 题解列表 2019年09月01日 0 点赞 0 评论 1156 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ char ch; int a=0,b=0,c=0,d=0; while( scanf("%c",…… 题解列表 2018年05月30日 0 点赞 0 评论 465 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:#include #include int main() { char i; int num = 0; int eng = 0; int space = 0; int ta …… 题解列表 2020年05月07日 0 点赞 0 评论 294 浏览 评分:0.0
用c语言解决字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { char ch;int j,z,k,s; j=z=k=s=0; while((ch=getc…… 题解列表 2024年11月12日 1 点赞 0 评论 233 浏览 评分:0.0
for循环统计(c语言) 摘要:解题思路:注意事项:如果不是if{}else if{}的形式,内存会过大。参考代码:#include #include int main(void) { char str[200]; …… 题解列表 2024年05月27日 0 点赞 0 评论 274 浏览 评分:0.0
[编程入门]字符串分类统计-题解(Python代码) 摘要:解题思路:isalpha()方法用来判断字符串中是否只包含字母,并且长度大于0,满足的话就返回True,否则返回False。isdigit()方法用来判断字符串中是否只包含数字,并且长度大于0,满足的…… 题解列表 2020年06月28日 0 点赞 0 评论 295 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:解题思路:getchar函数注意事项:(c=getchar())!='\n'参考代码:#include<stdio.h>int main(){ char c; int…… 题解列表 2021年02月01日 0 点赞 0 评论 122 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio>#include<cstring>using namespace std;int main() { int i,zm=0,sz=0,kg=…… 题解列表 2017年10月09日 0 点赞 0 评论 829 浏览 评分:0.0
题解 1012: [编程入门]字符串分类统计(C语言,有所疑问望解答,感谢感谢) 摘要:各位XDM又卡了,心塞塞~~~除了比大小的右边比较标准,其他的都没改,我是对照着ACSII表写的啊,不明白为啥会卡……在DEVC++和在线运行中都是通过的,一提交它就错了。得分50的代码:#inclu…… 题解列表 2022年07月23日 0 点赞 0 评论 445 浏览 评分:0.0