1130: C语言训练-数字母 摘要:解题思路: strlen函数判断字符长度,头文件string.h isalpha函数判断是否为字母(包含大小写)(是返回非0),头文件ctype.h注意事项: count必须赋值0,…… 题解列表 2022年12月30日 0 点赞 0 评论 416 浏览 评分: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 评论 425 浏览 评分:0.0
数字母 (常规) 摘要:解题思路: 常规做法,求字符串长度,循环遍历,判断字母.注意事项:参考代码: char arr[101]; scanf("%s", arr); int len = strlen(arr); int c…… 题解列表 2022年12月05日 0 点赞 0 评论 404 浏览 评分:9.9
C语言训练数字母 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2022年11月06日 0 点赞 0 评论 394 浏览 评分:0.0
C语言训练-数字母(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { char s[88]; int i=0…… 题解列表 2022年10月26日 0 点赞 0 评论 448 浏览 评分:9.9
C语言训练-数字母 摘要: #include #include using namespace std; int main() { char a[100]; …… 题解列表 2022年10月17日 0 点赞 0 评论 465 浏览 评分:0.0
1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 451 浏览 评分:0.0
1130: C语言训练-数字母 摘要:```cpp #include #include using namespace std; int main() { short s=0; char ch[100]; …… 题解列表 2022年09月22日 0 点赞 0 评论 601 浏览 评分:9.9
题解 1130: C语言训练-数字母(C) 摘要:解题思路:写好if中的判断条件就好啦~参考代码:#include<stdio.h> #include<string.h> int main(void){ char array[100]; …… 题解列表 2022年08月27日 0 点赞 0 评论 523 浏览 评分:0.0
C语言训练-数字母(简单数组) 摘要: #include #include void deal(char str[999]); int main() { char s…… 题解列表 2022年07月18日 0 点赞 2 评论 685 浏览 评分:9.9