题解 1130: C语言训练-数字母(C) 摘要:解题思路:写好if中的判断条件就好啦~参考代码:#include<stdio.h> #include<string.h> int main(void){ char array[100]; …… 题解列表 2022年08月27日 0 点赞 0 评论 161 浏览 评分:0.0
1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 179 浏览 评分:0.0
C语言训练-数字母 摘要: #include #include using namespace std; int main() { char a[100]; …… 题解列表 2022年10月17日 0 点赞 0 评论 214 浏览 评分:0.0
C语言训练数字母 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2022年11月06日 0 点赞 0 评论 102 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n=0,i; char a[1001]; gets(a); for(…… 题解列表 2022年12月19日 0 点赞 0 评论 112 浏览 评分:0.0
1130: C语言训练-数字母 摘要:解题思路: strlen函数判断字符长度,头文件string.h isalpha函数判断是否为字母(包含大小写)(是返回非0),头文件ctype.h注意事项: count必须赋值0,…… 题解列表 2022年12月30日 0 点赞 0 评论 88 浏览 评分:0.0
编写题解 1130: C语言训练-数字母(利用cctype) 摘要:解题思路:我看了一下题解,好像用ctype系列的题解暂时没有。这里就暂且引入一下ctype,操作就稍稍简单一点。ctype.h是C标准函数库中的头文件,定义了一批C语言字符分类函数(C charact…… 题解列表 2023年01月12日 0 点赞 0 评论 119 浏览 评分:0.0
新手最能看懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[1000]; int sum=0; get…… 题解列表 2023年03月14日 0 点赞 0 评论 104 浏览 评分:0.0
编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <algorithm>using namespace std;const in…… 题解列表 2023年04月23日 0 点赞 0 评论 119 浏览 评分:0.0
简单调用函数解决问题 摘要:参考代码:# include <stdio.h># include <string.h> //使用strlen()计算数组长度需添加此头文件void abc(char str[])…… 题解列表 2023年07月31日 0 点赞 0 评论 166 浏览 评分:0.0