1130: C语言训练-数字母 摘要:此题关键是使用isalpha()函数,注意读数据使用getline()。(尽管使用cin也能过)#include<bits/stdc++.h> using namespace std; int m…… 题解列表 2021年12月10日 0 点赞 0 评论 222 浏览 评分: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
1130: C语言训练-数字母-题解(python) 摘要:解题思路:注意事项:参考代码:import stringa = string.ascii_lettersb = input()m = 0for i in b: if i in a: …… 题解列表 2021年10月20日 0 点赞 0 评论 264 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:通过定义函数确定相应的范围进行赋值注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int c=0,b; char a[1…… 题解列表 2021年10月10日 0 点赞 0 评论 260 浏览 评分:9.9
数字母-C语言题解 摘要:解题思路:定义字符数组 输入字符串 循环判断字母注意事项:定义flag记录字母数参考代码:#include<stdio.h>#include<string.h>#include<ctype.h…… 题解列表 2021年10月04日 0 点赞 0 评论 865 浏览 评分:9.9
使用gets()获取整行输入 摘要:```c # include # include int main(void){ char a[100]; gets(a); int sum=0; for…… 题解列表 2021年06月07日 0 点赞 0 评论 301 浏览 评分:0.0
数字母(输入一串字符串统计字母个数) 摘要:解题思路:第一不用输字母,可以选择gets或者scanf函数,用for循环和if语句判断,统计个数注意事项:把大小写都要统计参考代码:#include<stdio.h>#include<string.…… 题解列表 2021年05月11日 0 点赞 0 评论 195 浏览 评分:0.0
干净的解法 摘要:解题思路:注意事项:参考代码:int_count = 0str_count = 0a = input(str())for i in a: if i.isdigit(): int_count +…… 题解列表 2021年04月10日 0 点赞 0 评论 179 浏览 评分:0.0
数字母 极简 摘要: import java.util.Arrays; import java.util.Scanner; public class 数字母 { publ…… 题解列表 2021年04月01日 0 点赞 0 评论 145 浏览 评分:0.0
java-简单粗暴易懂 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2021年03月18日 0 点赞 0 评论 103 浏览 评分:0.0