2003基础解法(Python) 摘要:解题思路:内置函数即可注意事项:题目介绍具有误导性,输入十个字符是指读取前十个字符,而非原输入只有十个字符,isnumeric()改成isalnum(),不然其实存在错误的情形参考代码:string …… 题解列表 2023年01月15日 0 点赞 0 评论 104 浏览 评分:9.9
编写题解 2003: 统计字符个数(cin.getline函数的使用) 摘要:### cin.getline 函数 ```c++ #include #include using namespace std; int main() { char s[11]; …… 题解列表 2023年05月13日 0 点赞 0 评论 131 浏览 评分:0.0
统计字符个数(靠,真就只要10个,多一个都不行是吧) 摘要:参考代码: ```c #include #include #include int main() { char a[200]; gets(a); int len=strlen(…… 题解列表 2023年10月28日 0 点赞 0 评论 131 浏览 评分:0.0
2003: 统计字符个数__题解(C++) 摘要:解题思路:注意事项:输入的字符可能包含空格,变量类型要用"string",输入要用"getline"(具体见第7行)参考代码:#include <bits/stdc++.h>using namespa…… 题解列表 2024年02月14日 0 点赞 0 评论 132 浏览 评分:9.9
只能说无意义的埋坑 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string s; // cin>>s;有一个点…… 题解列表 2024年10月20日 0 点赞 0 评论 94 浏览 评分:0.0