STL句子拆分成单词 摘要:#include<bits/stdc++.h> using namespace std; set<string>s; int main() { string str,c; …… 题解列表 2024年07月30日 0 点赞 0 评论 196 浏览 评分:0.0
绝了,涨知识了, 科学计数法输出 摘要:解题思路:循环加递归加格式化输出注意事项:首先是变量的大小一定要用对,然后输出格式要对参考代码:#include <iostream> #include <vector> #include <io…… 题解列表 2024年07月30日 0 点赞 0 评论 360 浏览 评分:0.0
[编程入门]三个数最大值C++与言(懒方法) 摘要:解题思路:三个数最大值用两个max就行注意事项:如下图参考代码:#include <bits/stdc++.h> //万能头using namespace std;int main(){ int…… 题解列表 2024年07月30日 2 点赞 0 评论 552 浏览 评分:0.0
简简单单,,,,,有一个函数如下,写一程序,输入x,输出y值。 摘要:解题思路:没啥难度,怎么想怎么做注意事项:两位小数参考代码:#include<iostream> #include <iomanip> using namespace std; int main…… 题解列表 2024年07月30日 0 点赞 0 评论 249 浏览 评分:0.0
2981: 二进制分类 摘要:```cpp #include using namespace std; int A,B; bool turn(int x) { int a=0,b=0; while(x!=0) …… 题解列表 2024年07月29日 0 点赞 0 评论 106 浏览 评分:0.0
2968: 区间内的真素数 摘要:```cpp #include using namespace std; int ss(int a){ if(ax>>y; for(int i=x;i…… 题解列表 2024年07月29日 0 点赞 0 评论 117 浏览 评分:0.0
set集合的使用(插入与遍历) 摘要:#include<bits/stdc++.h> using namespace std; int main() { int n,m; while(cin>>n>>m) { ve…… 题解列表 2024年07月29日 0 点赞 0 评论 127 浏览 评分:0.0
太经典了,链表的经典操作 链表数据求和操作 摘要:解题思路:还是前面讲的链表的经典操作注意事项:链表的使用,注意删除节点参考代码:#includeusing namespace std; typedef struct ListPlural{ …… 题解列表 2024年07月29日 0 点赞 0 评论 149 浏览 评分:0.0
这个作弊也可以哟 摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){ cout<<"Glmre"; return 0;}…… 题解列表 2024年07月29日 8 点赞 0 评论 826 浏览 评分:9.9
[竞赛入门]简单的a+b(C++) 摘要:解题思路:定义a,b,输入各值,输出a+b就可以了注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2024年07月29日 0 点赞 0 评论 251 浏览 评分:0.0