主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
阔赛英
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
13
发帖
0
笔记
0
Ta的粉丝
171
关注数
0
粉丝数
171
获赞数
8
阅读数
45031
三种情况:读取到字母、代表单词结束的空格、连续的空格
#include <iostream> #include <stdio.h> #include <string.h> using namespace std; int main() { char s[128]; whi...
P1394
2023年2月1日 16:01
回复 4
|
赞 3
|
浏览 4.2k
素数的倍数一定不是素数
#include <iostream> using namespace std; int main() { int a, b; while (cin >> a >> b) { int min, max, ...
P1102
2023年2月5日 19:38
回复 0
|
赞 0
|
浏览 2.7k
记录一下最大公约数和最小公倍数
#include <iostream> using namespace std; int GCD(int a, int b) {//最大公约数 if (b == 0) return a; else return...
P1041
2023年2月5日 12:56
回复 0
|
赞 0
|
浏览 3.2k
记录一下
#include <iostream> using namespace std; int GCD(int a, int b) {//求最大公约数 if (b == 0) return a; else retur...
P1353
2023年2月5日 12:43
回复 0
|
赞 0
|
浏览 3.6k
贪心
#include <iostream> #include <algorithm> using namespace std; struct Drink { double mi, wi;//毫升,价格 } dri[1024]; bool ...
P1478
2023年2月4日 13:15
回复 0
|
赞 0
|
浏览 3.4k
map
#include <iostream> #include <map> #include <string.h> using namespace std; int main() { int n, m; while (cin...
P1177
2023年2月3日 20:10
回复 0
|
赞 1
|
浏览 4.0k
map
#include <iostream> #include <map> #include <string.h> using namespace std; struct Student { string id; strin...
P1476
2023年2月3日 19:18
回复 0
|
赞 1
|
浏览 3.5k
分数相同,按照名字排序;名字也相同,按照年龄排序
#include <iostream> #include <string.h> #include <algorithm> using namespace std; struct Student { string name; ...
P1404
2023年2月2日 16:08
回复 0
|
赞 0
|
浏览 3.2k
flag标记是否有输出
#include <iostream> #include <string.h> #include <algorithm> using namespace std; int main() { int n; while (...
P1400
2023年2月2日 15:43
回复 0
|
赞 0
|
浏览 2.9k
sort函数
#include <iostream> #include <string.h> #include <algorithm> using namespace std; int main() { char s[32]; wh...
P1254
2023年2月2日 13:37
回复 0
|
赞 0
|
浏览 4.2k
cmp函数的一个特性就是, 如果return false, 那么函数就会将他们互换位置, return true就会保持原来位置不变。
#include <iostream> #include <algorithm> using namespace std; bool cmp(int a, int b) { if (a % 2 == 1 && b % 2 ==...
P1248
2023年2月2日 13:30
回复 0
|
赞 1
|
浏览 3.2k
先将成熟时间统一单位为分钟,然后再累加
#include <iostream> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { for (int i = 0; ...
P1053
2023年1月31日 16:18
回复 0
|
赞 0
|
浏览 3.1k
年份增加,需要判断平闰年
#include <iostream> using namespace std; int arr[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; void update(int year) {//...
P1446
2023年1月31日 15:52
回复 0
|
赞 2
|
浏览 3.8k
本科学校:四川工业科技学院
目标学校:西南科技大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!