二级C语言-统计字符-题解(C语言代码) 摘要:这样子写不是最方便简练的,但是我这串代码表达了两个知识点 ①如果你需要输入一个字符串,你可以用中的gets()函数,它与数组配套使用 ②了解库函数 ```c #include #includ…… 题解列表 2020年02月06日 0 点赞 0 评论 1369 浏览 评分:9.9
题解 1063: 二级C语言-统计字符 摘要:参考代码:#include<stdio.h>void main(){ char str; int i; int zimu,kongge,shuzi,qita; i=0; …… 题解列表 2021年10月27日 0 点赞 0 评论 966 浏览 评分:9.9
C语言 统计字符& 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define LONG 100int main(){ char c[LONG]…… 题解列表 2022年12月02日 0 点赞 0 评论 359 浏览 评分:9.9
二级C语言-统计字符-题解(Python代码) 摘要:这道题使用字符串中的测试方法可以很快的解决 使用a来表示英文字母的个数 b来表示数字的个数 c来表示空格的个数 d来表示其他字符的个数 最后输出acbd即可 ```python n = …… 题解列表 2020年03月12日 0 点赞 0 评论 818 浏览 评分:9.9
二级C语言-统计字符-题解(C语言代码)简单易懂 摘要:解题思路:道理很简单,字母、空格、数字和其他字符都找一个相应的参数,就是每输入一个字符去做相应的判断,最后输出对应参数。注意事项:要用getchar()函数,并且一定要把getchar()函数写到循环…… 题解列表 2021年02月09日 0 点赞 0 评论 2280 浏览 评分:9.9
二级C语言-统计字符-题解(C语言代码)) 摘要:题目: 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。 **----------------------我们来---------------------------------…… 题解列表 2020年03月06日 0 点赞 0 评论 662 浏览 评分:9.9
题目 1063: 二级C语言-统计字符 摘要:``` #include #include using namespace std; int main() { string str; getline(cin, str)…… 题解列表 2022年08月25日 0 点赞 2 评论 504 浏览 评分:9.9
编写题解 1063: 二级C语言-统计字符 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2024年09月03日 0 点赞 0 评论 125 浏览 评分:9.9
二级C语言-统计字符-题解(C语言代码) 摘要:```c #include void ClaChar(char* ch); int main() { char ch[100]; gets(ch); // scan…… 题解列表 2020年03月30日 0 点赞 0 评论 585 浏览 评分:9.9
二级C语言-统计字符(水题) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[100]; int i,a=0,b=0,c=0,d=0; gets(s); for(i=0;s[…… 题解列表 2023年01月10日 0 点赞 0 评论 130 浏览 评分:9.9