- 博客(4)
- 收藏
- 关注
原创 1075 PAT Judge (25 分)
所有的坑都试了一遍,还是没找到哪错了,唉… // // Created by 22385 on 2022/1/24. // /* 最后一个测试点未通过: 一个人提交的所有分数都是0,也应该要输出,而此时按照总分排序,没有提交过的可能排在前 先按输出标志排序 还是没通过!!!!! 学生的id需要初始化吗?... */ #include<stdio.h> #include<string.h> #include<alg
2022-02-15 23:21:23
241
原创 PAT | 算法笔记 | 图形输出
A1031 // // Created by 22385 on 2022/1/18. // // A1031 Hello World for U #include<stdio.h> #include<string.h> int main(){ char s[100]; scanf("%s",s); int len= strlen(s); int a=1,b=len+2-2*a; whil
2022-01-18 23:01:30
394
原创 PAT | 算法笔记 | 查找元素
A1006 // // Created by 22385 on 2022/1/18. // // 1006 Sign In and Sign Out #include<stdio.h> #include<string.h> int main(){ int n; scanf("%d",&n); char ID[20],openID[20],closeID[20]; int time_in,time_ou
2022-01-18 19:25:52
85
原创 PAT | 算法笔记 | 简单模拟
B1001 #include <stdio.h> //害死人不偿命的(3n+1)猜想 int main(){ int n; scanf("%d",&n); int count=0; while(n!=1){ if(n%2==0){ n/=2; }else{ n=(3*n+1)/2; } count++; } printf(
2022-01-18 15:29:20
255
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人