摘要: #include<stdio.h> int main(){ printf("PTA shi3 wo3 jing1 shen2 huan4 fa1 !"); return 0; } #include<iostream> #include<string> using namespace std; int 阅读全文
posted @ 2023-07-27 17:48 徐星凯 阅读(24) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int N,i; float height; char a; scanf("%d",&N);//输入时不要加入\n for(i=0;i<N;i++) { scanf(" %c%f",&a,&height);//在前面加一个空格 过滤空白 阅读全文
posted @ 2023-07-26 17:39 徐星凯 阅读(21) 评论(0) 推荐(0)
摘要: #include <iostream> #include <stdio.h> #include <string> using namespace std; int main() { int n; cin >> n; int a[1001] = {0}; for(int i = 0; i < n; i 阅读全文
posted @ 2023-07-25 17:19 徐星凯 阅读(16) 评论(0) 推荐(0)
摘要: 今天上午去考科目二,上一个考的人把车停的位置不对,我一上去一松手刹就开始溜车,停都停不住最后撞墙才停,也是非常的坎坷虽然我9点就考完了,但是他是一整个驾校几个人一起去的,所以我还要等其他人考完一起走,我万万没想到这一等直接到了下午2点,好在我考过了。 #include <iostream> #inc 阅读全文
posted @ 2023-07-24 19:42 徐星凯 阅读(11) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main() { int i; char s[20]="I Love GPLT"; #include<iostream> #include<set> #include<vector> using namespace std; int ans,ans1; i 阅读全文
posted @ 2023-07-23 19:37 徐星凯 阅读(19) 评论(0) 推荐(0)
摘要: 看完大道至简了,完成了读后感 大道至简读后感 根据序言我知道了这本书不同编程类的大多数书籍,在这本书中被没有很多的例子和实际上的讲解,作者更加注重与教会你思考的方式和编程这件事的本质。 从第一章开始我就感觉到了这本书的与众不同,第一章名为“编程的精义”,在我脑海中第一时间浮现出的就是一大堆的生僻晦涩 阅读全文
posted @ 2023-07-22 11:34 徐星凯 阅读(19) 评论(0) 推荐(0)
摘要: 今天上午建好了那个程序设计的小组群,感觉还是不太舒服睡了一上午 下午睡到三点起来玩了一会就去练车去了 晚上看了一会大道至简,看了一多半了马上就能写读后感了还打了一会代码 #include <iostream> #include <cctype> #include <cstring> using na 阅读全文
posted @ 2023-07-21 21:00 徐星凯 阅读(27) 评论(0) 推荐(0)
摘要: 今天生病了,一整天都很难受,没有学习;明天打算拉实践课的同学建群玩敞开会任务。 阅读全文
posted @ 2023-07-20 21:07 徐星凯 阅读(28) 评论(0) 推荐(0)
摘要: 1 #include <iostream> 2 #include <string> 3 4 using namespace std; 5 6 int main() { 7 string str; 8 int G, P, L, T; 9 G = P = L = T = 0; 10 11 cin >> 阅读全文
posted @ 2023-07-19 21:53 徐星凯 阅读(15) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main() { int d; int N;//朋友圈的个数 int ID[100][1000]; int k[100];//朋友圈中的人数 int M;//待查询人数 int Mid[10000];//待查询人 阅读全文
posted @ 2023-07-18 23:28 徐星凯 阅读(36) 评论(0) 推荐(0)