统计字符个数-题解(C++代码) 摘要: #include using namespace std; int main() { int c1=0,c2=0,c3=0,n=10; …… 题解列表 2020年03月26日 0 点赞 0 评论 351 浏览 评分:0.0
统计字符个数-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ char a[11]; cin.getline(a,11…… 题解列表 2020年04月11日 0 点赞 0 评论 411 浏览 评分:0.0
2003: 统计字符个数 摘要:看清楚题目是输入十个字符!!!这里被坑了一手。#include <bits/stdc++.h> using namespace std; int main(){ char s[11]…… 题解列表 2022年02月27日 0 点赞 0 评论 135 浏览 评分:0.0
统计字符个数 摘要:解题思路:边输入,边统计,最后输出就行了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int letter=0,number=0,ot…… 题解列表 2022年05月05日 0 点赞 0 评论 113 浏览 评分:0.0
编写题解 2003: 统计字符个数(cin.getline函数的使用) 摘要:### cin.getline 函数 ```c++ #include #include using namespace std; int main() { char s[11]; …… 题解列表 2023年05月13日 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