[编程入门]字符串分类统计 摘要:##[编程入门]字符串分类统计 ```c #include #include int main() { char s[201]; int i,c1=0,c2=0,c3=0,c4=0;…… 题解列表 2022年03月17日 0 点赞 0 评论 158 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char x;//输入的所有字符。 int i=0,g=0,n=0,b=0;//i为英文字母,g为数…… 题解列表 2018年12月18日 0 点赞 0 评论 305 浏览 评分:0.0
字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char a[200];int i,z=0,s=0,k=0,q=0;gets(…… 题解列表 2022年04月26日 0 点赞 0 评论 158 浏览 评分:0.0
用字符函数解题 摘要:解题思路:1.定义一个字符串变量; 2.用getline(cin, str)输入(因为如果直接输入,如果输入空格输入就结束了;getline函数在string头文件里) …… 题解列表 2021年03月03日 0 点赞 0 评论 116 浏览 评分: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日 0 点赞 0 评论 119 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(void){ char ch; int character=0,n…… 题解列表 2018年03月28日 0 点赞 0 评论 494 浏览 评分:0.0
引入头文件 摘要:```c # include # include int main(void) { int letter =0,number=0,blank=0,others=0,c; w…… 题解列表 2021年05月18日 0 点赞 0 评论 160 浏览 评分: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 评论 283 浏览 评分: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 评论 80 浏览 评分:0.0
1012: [编程入门]字符串分类统计 摘要:本题解用于记录,运用了gets、strlen函数(很常用)参考代码:#include<stdio.h> #include<string.h> int main() { char str[20…… 题解列表 2022年11月02日 0 点赞 0 评论 90 浏览 评分:0.0