1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 142 浏览 评分:0.0
1130好心疼C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h> int main(){ char str[…… 题解列表 2021年11月10日 0 点赞 0 评论 246 浏览 评分:0.0
C语言训练-数字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void main(){ char marry[1000]={0}; int m,n,k=0; ge…… 题解列表 2017年10月14日 0 点赞 0 评论 785 浏览 评分:0.0
。。中。。:C语言训练-数字母 (C语言代码) 摘要:想了很多种方法还是感觉这种最简单。#include<stdio.h> #include<string.h> int main() { int i,t; char str[100]; …… 题解列表 2019年02月21日 1 点赞 0 评论 477 浏览 评分:0.0
C语言训练-数字母-题解(C语言代码) 摘要:```c #include #include int main() { char a[100]; gets(a); int l=strlen(a),sum=0; …… 题解列表 2020年09月30日 0 点赞 0 评论 214 浏览 评分:0.0
C语言训练-数字母-题解(C语言代码) 摘要:题目: 输入一个字符串,数出其中的字母的个数. 要求: 一个字符串,不包含空格(长度小于100) #include #include #include …… 题解列表 2020年02月26日 0 点赞 0 评论 325 浏览 评分:0.0
C语言训练-数字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){char …… 题解列表 2018年04月21日 0 点赞 0 评论 522 浏览 评分:0.0
C语言训练-数字母-题解(C语言代码) 摘要:题目简单,自己看看就完事 #include int main() { char a[100]; int i,d=0; gets(a); for(i=0;a[i]!='\0';…… 题解列表 2019年07月24日 0 点赞 0 评论 503 浏览 评分:0.0
编写题解 1130: C语言训练-数字母(利用cctype) 摘要:解题思路:我看了一下题解,好像用ctype系列的题解暂时没有。这里就暂且引入一下ctype,操作就稍稍简单一点。ctype.h是C标准函数库中的头文件,定义了一批C语言字符分类函数(C charact…… 题解列表 2023年01月12日 0 点赞 0 评论 72 浏览 评分:0.0
1130: C语言训练 数字母 ctype快速计数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> #inc…… 题解列表 2024年04月12日 0 点赞 0 评论 147 浏览 评分:0.0