刷题记录(头秃第n天) 摘要:解题思路:gets puts函数的使用 解决scanf不能输入空格问题注意事项:参考代码:#include<string.h>#include<stdio.h>#include<stdlib.h>…… 题解列表 2022年03月21日 0 点赞 0 评论 134 浏览 评分:0.0
1012题这题有坑,我错了三次 摘要:package 网站题目; import java.util.Scanner; 这是错解,我就是在第十二行把/n换成/r。useDelimiter()这个方法啥意思我也没有看文档。。。但是…… 题解列表 2019年11月22日 0 点赞 1 评论 446 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:运用各字符数字英文大小写字母对应的ASCII码筛选出一个范围即可求解注意事项: 参考代码:#include "stdafx.h"#include <stdio.h>int main(int …… 题解列表 2018年09月14日 1 点赞 0 评论 646 浏览 评分:0.0
【编程入门】字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char ch[200]; //字符串的定义 …… 题解列表 2024年04月17日 0 点赞 0 评论 108 浏览 评分:0.0
字符串分类统计(C语言) 摘要:解题思路:C里面有一个函数库<ctype.h>,里面包含了许多函数注意事项:C语言定义完成后一定要赋值,如果是从键盘输入的话,可以直接定义,不用初始化,因为键盘上的值通过scanf()赋给了未知数参考…… 题解列表 2021年05月29日 0 点赞 0 评论 167 浏览 评分:0.0
]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[200]; gets(a); int i,zimu=0,shuzi=0,kong…… 题解列表 2023年11月30日 0 点赞 0 评论 61 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ char ch[100]; int l=0, m=0,p=0, q=0;//…… 题解列表 2018年05月28日 0 点赞 0 评论 419 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C++代码) 摘要:解题思路:为了识别字母与数字,我引用了 cctype头文件注意事项:利用isdigit()识别数字,isalpha()识别字母参考代码:#include<iostream>#include<cctyp…… 题解列表 2019年04月01日 0 点赞 0 评论 411 浏览 评分:0.0
编程入门]字符串分类统计 摘要:解题思路:#include <stdio.h>#include <ctype.h>int main(){ int letter = 0,number = 0,blank = 0,others =…… 题解列表 2021年11月10日 0 点赞 0 评论 226 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:#include int main() { int letter = 0,number = 0,blank = 0,others = 0,c; //分别为字母、数字、空格、…… 题解列表 2019年07月25日 0 点赞 0 评论 294 浏览 评分:0.0