C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char string[10001]; int chars,others,nums,spaces; chars=…… 题解列表 2019年01月29日 0 点赞 0 评论 292 浏览 评分:0.0
优优优质题解!!!!! 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { int zimu =0; int shuzi =0; int kong…… 题解列表 2023年12月10日 0 点赞 0 评论 99 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:解题思路:注意事项:参考代码://字符串分类统计#include<stdio.h>const int maxn = 10001;int main(){ char str[maxn]; int s = …… 题解列表 2021年02月01日 0 点赞 0 评论 188 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:与1035题重复,详情参见1035题https://blog.dotcpp.com/a/69680 通过字符输入函数getchar来得到键盘输入的内容,判断是否等于回车,等于回车结束. 依次判断字…… 题解列表 2020年03月26日 0 点赞 0 评论 280 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:ASCII码记不住可以用字符代替,但是(s=getchar()) !='\n',记住s=getchar()一定要用括号括起来参考代码:#include<stdio.…… 题解列表 2018年04月02日 0 点赞 0 评论 491 浏览 评分:0.0
指针实现对数组访问,统计字符串的不同类型 摘要:#include<stdio.h>#include<string.h>#define INPUT_COUNT (100)#define DATA_NULL (char *)(0)#define ERR…… 题解列表 2022年10月22日 0 点赞 0 评论 89 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:本题目主要考察getchar()的应用,同时利用while循环在键盘上输入字符串,直到输入换行符时,循环结束,在while循环内嵌入if...else结构对输入的字符串的字母,数字,空格和其他字符的个…… 题解列表 2019年09月01日 0 点赞 0 评论 1123 浏览 评分:0.0
1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int b[4]={0,0,0,0}; char a[200]; for (int i = 0; i != 2…… 题解列表 2023年08月01日 0 点赞 0 评论 86 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 113 浏览 评分:0.0
[编程入门]字符串分类统计-题解(Java代码) 摘要:package shuati; import java.util.Scanner; //输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。 public class T101…… 题解列表 2020年01月22日 0 点赞 0 评论 436 浏览 评分:0.0