主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
我不是深井冰丶
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
8
发帖
0
笔记
0
Ta的粉丝
183
关注数
0
粉丝数
183
获赞数
10
阅读数
32151
使用string类
#include <bits/stdc++.h> using namespace std; int main(){ string s; while(cin>>s){ int len = s.length(); string arr[len...
P1294
2023年1月17日 18:07
回复 1
|
赞 3
|
浏览 4.2k
一套十进制转n进制的模板
#include <bits/stdc++.h> using namespace std; vector<string> radixArr = {"0","1","2","3","4","5","6","7","8","9","A","B","C","D",...
P1417
2023年3月26日 12:09
回复 0
|
赞 0
|
浏览 1.9k
使用string类
写成sort(s,s+s.length())是错误的,查了资料后应该写成sort(s.begin(),s.end()) #include <bits/stdc++.h> using namespace std; int main(){ string s; ...
P1254
2023年1月17日 17:30
回复 0
|
赞 0
|
浏览 3.4k
注意题目可能有多个空格
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin,s)){ if(s[0]>='a'&&s[0]<='z')...
P1240
2023年1月15日 22:11
回复 0
|
赞 4
|
浏览 3.8k
使用cin遇到空格会结束,可以用getline()
#include<bits/stdc++.h> using namespace std; int main(){ string m,n; int count = 0; while(1){ getline(cin,m); getline(cin,n...
P1320
2023年1月15日 21:31
回复 0
|
赞 1
|
浏览 4.2k
类似快排的划分思想,将数组划分为奇数区和偶数区
#include <iostream> #include <algorithm> using namespace std; void swap(int i,int j,int arr[]){ int temp; temp = arr[i]; a...
P1010
2023年1月14日 17:25
回复 0
|
赞 1
|
浏览 4.3k
将字符强转成int再根据ASCII码做判断
#include <iostream> #include <string> using namespace std; bool isAlphabet(char x){ if(((int(x)>=65 && int(x)<=9...
P1016
2023年1月14日 17:08
回复 0
|
赞 1
|
浏览 3.1k
大佬们麻烦看看我这个代码该怎么改
#include <stdio.h> int main(){ while(1){ int i,A=0,B=0,C=0,D=0; &nb...
P1003
2021年12月30日 18:27
回复 3
|
赞 0
|
浏览 7.3k
本科学校:无
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!