摘要: 今天去进行科目三的强化去了,体会到了练车的恐怖,早上十点到的,现在九点才刚到家,今天没学习。打算赶紧吃饭洗洗睡了,明天早上8点还要去考科目三,估计又是一整天难受。 阅读全文
posted @ 2023-08-09 20:53 徐星凯 阅读(94) 评论(0) 推荐(0) 编辑
摘要: #include<cstdio> #include<cstring> #include<string> #include<math.h> #include<iostream> #include<algorithm> #include<iomanip> #include<vector> #includ 阅读全文
posted @ 2023-08-08 19:26 徐星凯 阅读(110) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; vector<int> vec[100000];//存关系图 bool vis[100000];//标记五服以内的亲属 char sex[100000];//记录性别 bool flag;//标记情侣是否为近 阅读全文
posted @ 2023-08-07 19:58 徐星凯 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include<string.h> #include<cstdio> #include<iostream> #include<algorithm> #include<cmath> #include<string> #include<cstring> #include<vector> using n 阅读全文
posted @ 2023-08-06 19:55 徐星凯 阅读(61) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { int N; scanf("%d",&N); int queue[N]; //记录每个轨道的最小序号 int queueNum=0; //轨道数量 int num; for (int i = 0; i < N; i++) { scanf( 阅读全文
posted @ 2023-08-05 21:46 徐星凯 阅读(67) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> typedef struct node{ //自己父母和孩子的编号 int master; int fa; int mu; int kidn; int kids[10]; double sum,area; }node; nod 阅读全文
posted @ 2023-08-05 17:05 徐星凯 阅读(73) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdio.h> int main() { int clock[24], n = 0;//储存大本钟的心情指数 for (int i = 0; i < 24; i++) { scanf("%d", &clock[i]);//输入心情指数 } s 阅读全文
posted @ 2023-08-03 20:56 徐星凯 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<string.h> int main() { char s[10];//输入数据 scanf("%s", s); int len = strlen(s), num; //将长度为四的生日补全 if (len == 4) { num = (s[0] 阅读全文
posted @ 2023-08-02 21:14 徐星凯 阅读(54) 评论(0) 推荐(0) 编辑
摘要: #include<math.h> #include<stdio.h> #include<stdlib.h> #include<string.h> int main() { int i; //用于循环 int k; //表示平局的间隔次数 int index; //标记平局次数 char name[2 阅读全文
posted @ 2023-08-01 21:18 徐星凯 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 今天仍然在整理pta的题目,还时挺慢的,今天整理到第40题了,下午的时候雨停了,去路上练了一会车,为科目三做准备 #include <iostream> using namespace std; int main() { int n; cin >> n; double sum = 0; for(in 阅读全文
posted @ 2023-07-31 21:34 徐星凯 阅读(16) 评论(0) 推荐(0) 编辑