[编程入门]字符串分类统计-题解(C语言代码) 摘要:```c #include #include int main() { int cw=0,cn=0,cs=0,c=0; char ch; while(scanf("%c"…… 题解列表 2020年01月30日 0 点赞 0 评论 267 浏览 评分:0.0
python用for解决 摘要:解题思路:注意事项:参考代码:str=input()a,b,c,d=0,0,0,0for i in str: if (i>='A' and i<='Z') or …… 题解列表 2024年03月15日 1 点赞 0 评论 129 浏览 评分: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 评论 3252 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ char ch[100]; int l=0, m=0,p=0, q=0;//…… 题解列表 2018年05月28日 0 点赞 0 评论 444 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:```c #include int main(){ int a=0,b=0,c=0,d=0,i; char str[100]; gets(str); for(i=0;i64&&…… 题解列表 2020年02月21日 0 点赞 0 评论 303 浏览 评分:0.0
编写题解 1010: [编程入门]利润计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d,f; char s[200]; a=…… 题解列表 2024年07月24日 0 点赞 0 评论 93 浏览 评分:0.0
字符串分类统计C++ 摘要:解题思路:采用for循环输入,用gets而不用cin可以 输入空格注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ in…… 题解列表 2023年03月22日 0 点赞 0 评论 79 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; int en=0,black=0,number=0,other=0; while((c=getc…… 题解列表 2018年09月20日 0 点赞 0 评论 435 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码: #include <stdio.h> #include <string.h> /* 输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的…… 题解列表 2023年07月05日 0 点赞 0 评论 73 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 159 浏览 评分:0.0