c++,cin.get()解法 摘要:解题思路:cin.get()读到行的最后一个,但是不读入回车,因此,通过读到null终止循环。注意事项:参考代码:#include<iostream>#include<string>using nam…… 题解列表 2021年07月31日 0 点赞 0 评论 312 浏览 评分:0.0
1012: [编程入门]字符串分类统计 摘要:package ACM01; import java.util.Scanner; public class acm012 { public static void main(Str…… 题解列表 2021年07月15日 0 点赞 2 评论 129 浏览 评分:7.3
1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int letter=0,number=0,blank=0,others=0,c; while((c…… 题解列表 2021年07月12日 0 点赞 0 评论 145 浏览 评分:0.0
字符串分类统计 摘要:#include <stdio.h>int main(){ int num=0,blank=0,word=0,other=0; char a; while((a=getchar())!='\n…… 题解列表 2021年06月14日 0 点赞 1 评论 97 浏览 评分:0.0
使用数组求字符串分类统计 摘要://输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。 #include void main() { char x[200]; int a = 0, b = 0, c =…… 题解列表 2021年05月30日 0 点赞 0 评论 201 浏览 评分:0.0
字符串分类统计(C语言) 摘要:解题思路:C里面有一个函数库<ctype.h>,里面包含了许多函数注意事项:C语言定义完成后一定要赋值,如果是从键盘输入的话,可以直接定义,不用初始化,因为键盘上的值通过scanf()赋给了未知数参考…… 题解列表 2021年05月29日 0 点赞 0 评论 167 浏览 评分:0.0
引入头文件 摘要:```c # include # include int main(void) { int letter =0,number=0,blank=0,others=0,c; w…… 题解列表 2021年05月18日 0 点赞 0 评论 161 浏览 评分:0.0
字符串分类统计 摘要:解题思路:第一步先用gets函数来输入字符串保证空格计数,yongfor循环语句来实现统计个数,分别用if语句来分别求出个数注意事项:scanf函数不能识别空格参考代码:#include<stdio.…… 题解列表 2021年05月11日 0 点赞 1 评论 216 浏览 评分:9.9
字符分类统计 摘要:解题思路:思路1:利用<ctype.h>库中的函数,判断字符的ascii码是否为字母(isalpha),数字(isdigit),空格或其他; 思路2:直接利用每个字符是属…… 题解列表 2021年04月22日 0 点赞 0 评论 174 浏览 评分:0.0
while((a[i]=getchar())!='\n'){i++;} 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; int i=0; int w=0…… 题解列表 2021年03月13日 0 点赞 0 评论 467 浏览 评分:0.0