主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
FCC
keep going~
关注
发消息
文章
0
题解
14
发帖
0
笔记
0
Ta的粉丝
58
关注数
0
粉丝数
58
获赞数
5
阅读数
9230
二进制数 题解:十进制转二进制(除留余数法)+vector<int>反向输出
#include <bits/stdc++.h> using namespace std; int main(){ unsigned int n; cin >> n; int x; vector<int> arr; //十...
P1380
2024年3月15日 20:38
回复 0
|
赞 0
|
浏览 548
翻转数的和 题解:使用int型+数字翻转(除留余数法)
#include <bits/stdc++.h> using namespace std; //求翻转数 int reverse( int n ){ int x, sum = 0; while( n > 0 ){ x = n % 10;...
P1003
2024年3月15日 20:11
回复 0
|
赞 0
|
浏览 523
进制转换2 题解:遍历str,sum = sum * 16 + str[i] - '0'或sum * 16 + str[i] - 'A' + 10,sum必须放在内循环,每次重置
#include <bits/stdc++.h> using namespace std; int main(){ int sum = 0; //十进制 string str; while( cin >> str ){ int s...
P1259
2024年3月15日 19:39
回复 0
|
赞 0
|
浏览 682
首字母大写 题解:getline()+首字母单独处理+单词首字母前面一定是空白字符+大小写转换
#include <bits/stdc++.h> using namespace std; int main(){ string str; while( getline( cin, str ) ){ //句子首字母单独处理 if( str[0]...
P1240
2024年3月15日 19:15
回复 0
|
赞 1
|
浏览 813
最大公约数和最小公倍数 题解:三元符+技巧
#include<bits/stdc++.h> using namespace std; int main() { int a, b, r1, r2; cin>> a >> b; //求最大公约数 for...
P1041
2024年3月15日 00:33
回复 2
|
赞 0
|
浏览 548
0和1的个数 题解:wihle循环实现除留余数法,将十进制转换成二进制
int n; cin >> n; int count1 = 0; while (n != 0){ if (n % 2 == 1) count1++; n /= 2; } cout << "count0=" << 32 -...
P1008
2024年3月15日 16:22
回复 0
|
赞 0
|
浏览 627
删除字符串2 题解:transform()函数+erase()函数(有坑)
#include <bits/stdc++.h> using namespace std; int main(){ string str, str1; cin >> str; str1 = str; int pos = 0; /*tolo...
P1027
2024年3月15日 15:39
回复 0
|
赞 0
|
浏览 548
加密算法 题解:getline( cin, str )读取一行字符串,包括空白字符;字母循环;string输出方式
#include <bits/stdc++.h> using namespace std; int main(){ string str; getline( cin, str ); //字符串里有空白字符,故要用getline()获取一行,若直接用cin &...
P1014
2024年3月15日 10:49
回复 0
|
赞 1
|
浏览 662
判断素数 题解:判断素数/质数:指在>1的自然数中,除了1和它本身以外,不再有其他因数的自然数。
#include <bits/stdc++.h> using namespace std; /* 判断素数/质数:指在大于1的自然数中,除了1和它本身以外,不再有其他因数的自然数。*/ bool isSu( int n ){ if( n < 2 ) //...
P1013
2024年3月15日 10:22
回复 0
|
赞 0
|
浏览 954
日期 题解:枚举+日期计算
#include <bits/stdc++.h> using namespace std; //枚举类型,从5月起 int amount[8] = { 31, 30, 31, 31, 30, 31, 30, 31 }; //判断周几 string isWeek...
P1011
2024年3月15日 00:18
回复 0
|
赞 0
|
浏览 737
01序列 题解:移位+与
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main(){ // 遍历 0 ~ 63 这 64 个整数 ...
P1001
2024年3月14日 22:28
回复 0
|
赞 0
|
浏览 562
字符串翻转 题解:reverse()函数
#include <bits/stdc++.h> using namespace std; int main(){ string s; cin >> s; reverse( s.begin(), s.end() ); //字符串迭代器 c...
P1006
2024年3月14日 21:29
回复 0
|
赞 0
|
浏览 554
字符移动 题解:静态char数组的输入输出、求长度
#include <bits/stdc++.h> using namespace std; int main(){ char ch[100]; //定义char类型字符数组 cin >> ch; //输出非数字字符 for( int i=...
P1012
2024年3月14日 21:21
回复 0
|
赞 0
|
浏览 563
排序 题解:C++静态数组+sort()函数
#include <bits/stdc++.h> using namespace std; int main(){ int i = 0, n; cin >> n; int num[n]; for( int i=0; i < n; i++...
P1010
2024年3月14日 20:38
回复 0
|
赞 3
|
浏览 909
本科学校:华盛顿大学
目标学校:合肥工业大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!