靓仔兴
靓仔兴
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
靓仔兴的博客
全部文章
(共29篇)
题解 | #字符串分隔#
#include <iostream> using namespace std; int main() { // int lenth=0; // char s[100]; // int num;//需要补0的个数 // while(cin>>s...
2023-01-08
0
212
题解 | #字符串分隔#
#include <iostream> using namespace std; int main() { int lenth=0; char s[100]; int num;//需要补0的个数 while(cin>>s[lenth]) ...
2023-01-08
0
202
题解 | #明明的随机数#
#include <iostream> using namespace std; int main() { //法二: bool val[501]={0};//一直输入数字大小范围为1~500所以创建一个大小为500的bool类型数组,分别记录数组下标对应的数字是否出现,...
2023-01-08
0
212
题解 | #明明的随机数#
#include <iostream> using namespace std; int main() { int size; int i = 0;//记录键盘输入了多少个数字 int temp;//临时变量 int num[1000];//存储键盘输入...
2023-01-08
0
229
题解 | #计算某字符出现次数#
#include <iostream> using namespace std; int main() { int time = 0; char ch; string s; //cin>>s; //cin>>noskipw...
2023-01-08
0
192
题解 | #字符串最后一个单词的长度#
#include <iostream> using namespace std; int main() { //法一:循环覆盖字符串,输出最后一个字符串长度 // string s; // while (cin >> s) ; // cout...
2023-01-07
0
277
KY29谁是你的潜在朋友
#include<iostream> #include<algorithm> using namespace std; int main(){ int N,M; cin>>N; cin>>M; int book[M];...
2021-01-31
0
513
KY9 成绩排序
#include<iostream> #include<algorithm> using namespace std; struct Student{ int no; int score; }; bool compared(Student std1,Stud...
2021-01-30
9
765
KY2 成绩排序 自测结果是对的,但是不知道为什么牛客网批改为错误
# include<iostream> # include<algorithm> using namespace std; struct Student{ string name; int score; }; bool Ascending(Student ...
2021-01-30
8
2755
首页
上一页
1
2
3
下一页
末页