主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
可可爱爱草莓派
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
38
发帖
0
笔记
0
Ta的粉丝
11
关注数
0
粉丝数
11
获赞数
2
阅读数
30987
用*(max_element(a,a+n)求数组a中最大值
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin >> n){ ...
P1400
2024年8月27日 15:16
回复 0
|
赞 0
|
浏览 1.1k
字符串内排序 题解:
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(cin >> s){; &nb...
P1360
2024年8月27日 14:51
回复 0
|
赞 0
|
浏览 1.0k
解题思路
#include<bits/stdc++.h> using namespace std; struct excel{ int p; string name; int grade; }st...
P1338
2024年8月27日 14:46
回复 0
|
赞 0
|
浏览 1.1k
参考大家的三种方法
#include<bits/stdc++.h> using namespace std; string str[1010]; //方法一 //int main(){ // string s; // cin >&g...
P1294
2024年8月27日 08:51
回复 0
|
赞 0
|
浏览 1.1k
注意使用getchar写cmp函数 size() 比较大小就可以了
#include<bits/stdc++.h> using namespace std; string s[110]; bool cmp(string a,string b){ return a.size() < b.size(); } ...
P1261
2024年8月26日 21:44
回复 0
|
赞 0
|
浏览 1.0k
参考大家的简化了cmp
#include <bits/stdc++.h> using namespace std; bool cmp(char a, char b) { return tolower(a) < tolower(b); } char c[101...
P1255
2024年8月26日 21:13
回复 0
|
赞 0
|
浏览 1.2k
字母统计 题解:用的map
#include<bits/stdc++.h> using namespace std; int main(){ string s; while (getline(cin,s)){ &...
P1292
2024年8月25日 18:05
回复 0
|
赞 0
|
浏览 324
首字母大写 题解:c++
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin,s)){ &nbs...
P1240
2024年8月25日 10:42
回复 0
|
赞 0
|
浏览 454
统计字符 题解:学视频上的
#include<stdio.h> #include<string.h> char s[10],t[110]; int main(){ while(gets(s) && s[0] != '#'){ &...
P1320
2024年8月25日 10:11
回复 0
|
赞 0
|
浏览 448
旋转字 题解:C++
#include<bits/stdc++.h> using namespace std; int main(){ char l[36],c[36]; int n; gets(l); &n...
P1214
2024年8月24日 21:18
回复 0
|
赞 0
|
浏览 282
旋转矩阵 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int n,m,k; while(cin >> n >> m >> ...
P1221
2024年8月24日 20:52
回复 0
|
赞 0
|
浏览 444
日期差值 题解:容易理解比较笨的方法
#include<bits/stdc++.h> using namespace std; int m[] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int judge(int year){//用于判断闰年,修改2月份天数,并返回这一...
P1290
2024年8月24日 17:17
回复 0
|
赞 1
|
浏览 448
日期累加 题解:注释了函数的功能
#include<bits/stdc++.h> using namespace std; int m[] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int judge(int year){//用于判断闰年,修改2月份天数,并返回这一...
P1446
2024年8月24日 16:27
回复 0
|
赞 0
|
浏览 320
2048游戏 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int n,a[4][4]; cin >> n;//1,2,3,4,上下左右 ...
P1472
2024年8月24日 14:41
回复 0
|
赞 0
|
浏览 355
杨辉三角形 题解:
#include<bits/stdc++.h> using namespace std; int a[20][20]; int main() { int n; for(int i = 0; i < 20;...
P1062
2024年7月21日 16:05
回复 0
|
赞 0
|
浏览 544
变位词 题解:用map<char,int>
#include<bits/stdc++.h> using namespace std; int main(){ int n; char ch; cin >> n; &n...
P1032
2024年7月21日 12:13
回复 0
|
赞 0
|
浏览 363
日期 题解:switch
#include<bits/stdc++.h> using namespace std; int main(){ int months[10] = {0,30,31,30,31,31,30,31,30,31}; int...
P1011
2024年7月20日 10:50
回复 0
|
赞 1
|
浏览 608
利润提成 题解:switch题解
//switch方法 #include<iostream> using namespace std; int main(){ int l; cin >> l; switc...
P1040
2024年7月18日 12:02
回复 0
|
赞 0
|
浏览 479
1
2
本科学校:bilibilil大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!