感谢支持,谢谢你们的支持 摘要:解题思路:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; if(a>=10||b>=2…… 题解列表 2023年05月13日 0 点赞 0 评论 148 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:#include<iostream>using namespace std;int main(){ int t; cin>>t; if(t>=25&&t<=30) …… 题解列表 2023年05月13日 0 点赞 0 评论 147 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:#include <iostream>using namespace std;int main(){ char ch; cin>>ch; if(int(ch)&1) { co…… 题解列表 2023年05月13日 0 点赞 1 评论 496 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:#include <iostream>using namespace std;int main(){ int n; cin>>n; if(n%2==0) { cout<<"…… 题解列表 2023年05月13日 0 点赞 0 评论 402 浏览 评分:0.0
单词得分c++ 摘要:解题思路:注意事项:注意a和A的得分为1,在转换成整数的时候要+'1'参考代码:#include<bits/stdc++.h>using namespace std;int main(…… 题解列表 2023年05月13日 0 点赞 0 评论 274 浏览 评分:0.0
编写题解 2003: 统计字符个数(cin.getline函数的使用) 摘要:### cin.getline 函数 ```c++ #include #include using namespace std; int main() { char s[11];…… 题解列表 2023年05月13日 0 点赞 0 评论 287 浏览 评分:0.0
别管,输出就完了c++ 摘要:解题思路:1、先定义一个字符数组2、输入n,就是输入多少个数,用for循环3、然后输入m是从哪开始取4、后面调用fun函数,把他妈的m和该死的字符串s传过去,从哪开始就从哪输出,非要纠结题目拷贝可以再…… 题解列表 2023年05月12日 0 点赞 0 评论 180 浏览 评分:0.0
我是菜狗。。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; int b; for(int i=0;i<10;…… 题解列表 2023年05月12日 0 点赞 0 评论 189 浏览 评分:0.0
第一个带类的C++程序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,t=""; cin>>s; …… 题解列表 2023年05月12日 0 点赞 0 评论 222 浏览 评分:0.0
#C++1724——后缀子串排序 摘要:解题思路:string类的substr函数求出子串,放入set容器自动排序,定义迭代器遍历即可;注意事项:cout输出会超时,用c_str函数转化为C风格的字符串(迭代器类似于指针,需要“->”去访问…… 题解列表 2023年05月12日 0 点赞 0 评论 368 浏览 评分:9.9