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

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

筛选

1130: C语言训练-数字母

摘要:解题思路:    strlen函数判断字符长度,头文件string.h    isalpha函数判断是否为字母(包含大小写)(是返回非0),头文件ctype.h注意事项:    count必须赋值0,……

C语言训练-数字母

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n=0,i; char a[1001]; gets(a); for(……

数字母 (常规)

摘要:解题思路: 常规做法,求字符串长度,循环遍历,判断字母.注意事项:参考代码: char arr[101]; scanf("%s", arr); int len = strlen(arr); int c……

C语言训练数字母

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

C语言训练-数字母(简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     char s[88];     int i=0……

1130: C语言训练-数字母

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() {     st……