题解 1130: C语言训练-数字母

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

java-简单粗暴易懂

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

数字母 极简

摘要: import java.util.Arrays; import java.util.Scanner; public class 数字母 { publ……

干净的解法

摘要:解题思路:注意事项:参考代码:int_count = 0str_count = 0a = input(str())for i in a:  if i.isdigit():    int_count +……

数字母(输入一串字符串统计字母个数)

摘要:解题思路:第一不用输字母,可以选择gets或者scanf函数,用for循环和if语句判断,统计个数注意事项:把大小写都要统计参考代码:#include<stdio.h>#include<string.……

数字母-C语言题解

摘要:解题思路:定义字符数组   输入字符串   循环判断字母注意事项:定义flag记录字母数参考代码:#include<stdio.h>#include<string.h>#include<ctype.h……

C语言训练-数字母

摘要:解题思路:通过定义函数确定相应的范围进行赋值注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int c=0,b; char a[1……

1130好心疼C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>         int main(){    char str[……

1130: C语言训练-数字母

摘要:此题关键是使用isalpha()函数,注意读数据使用getline()。(尽管使用cin也能过)#include<bits/stdc++.h> using namespace std; int m……