题解 1130: C语言训练-数字母(C) 摘要:解题思路:写好if中的判断条件就好啦~参考代码:#include<stdio.h> #include<string.h> int main(void){ char array[100]; …… 题解列表 2022年08月27日 0 点赞 0 评论 123 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char a[100];int i,z=0;gets(a);for(i=0;i…… 题解列表 2022年04月26日 0 点赞 0 评论 121 浏览 评分:0.0
。。中。。:C语言训练-数字母 (C语言代码) 摘要:想了很多种方法还是感觉这种最简单。#include<stdio.h> #include<string.h> int main() { int i,t; char str[100]; …… 题解列表 2019年02月21日 1 点赞 0 评论 477 浏览 评分:0.0
简单C语言训练-数字母 摘要:```python s=input() c=0 for i in s: if i.isalpha(): //isalpha寻找字母 c+=1 print(c) …… 题解列表 2023年11月15日 0 点赞 0 评论 121 浏览 评分:0.0
C语言训练-数字母-题解(C语言代码) 摘要:解题思路:注意事项:注意大于等于;参考代码:#include <stdio.h>#include <string.h>int main(){ char a[100]; int i,b,n; b=0; …… 题解列表 2020年12月05日 0 点赞 0 评论 170 浏览 评分:0.0
C语言训练-数字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){char …… 题解列表 2018年04月21日 0 点赞 0 评论 522 浏览 评分:0.0
C语言训练-数字母 (C++代码) 摘要:解题思路:写个判断函数 判断字符串是否是字符 注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char str…… 题解列表 2019年04月21日 0 点赞 0 评论 368 浏览 评分:0.0
1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 142 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ getline(cin…… 题解列表 2022年05月10日 0 点赞 0 评论 104 浏览 评分: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 评论 62 浏览 评分:0.0