码迷,mamicode.com
首页 >  
搜索关键字:准考证    ( 126个结果
PTA乙级 (*1095 解码PAT准考证 (25分))
1095 解码PAT准考证 (25分) https://pintia.cn/problem-sets/994805260223102976/problems/1071786104348536832 题目大意:给出一组学生的准考证号和成绩,准考证号包含了等级(乙甲顶),考场号,日期,和个人编号信息,并 ...
分类:其他好文   时间:2020-02-06 01:36:50    阅读次数:65
B1041. 考试座位号
基本思路 两个类型的座位号,试机座位号为a,考试座位号为b,先得到a再得到b 准考证号为id 定义一个学生结构体,将a设为下标,b和id作为该结构体的属性 #include <bits/stdc++.h> using namespace std; struct Student{ long long ...
分类:其他好文   时间:2020-02-06 01:11:59    阅读次数:71
B1095 解码PAT准考证
题目链接:https://pintia.cn/problem-sets/994805260223102976/problems/1071786104348536832 PAT 准考证号由 4 部分组成: 第 1 位是级别,即 T 代表顶级;A 代表甲级;B 代表乙级; 第 2~4 位是考场编号,范围 ...
分类:其他好文   时间:2020-02-01 16:00:42    阅读次数:66
实验七
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2020-01-01 11:45:20    阅读次数:57
实验七
《实验七》 验证性实验1: 验证性内容2: 验证性内容3: 验证性内容4: 以二进制形式存入file4.dat后,内容不可以直接读出 编程练习: #include <stdio.h>#include <stdlib.h>#include <string.h>const int N = 5;typed ...
分类:其他好文   时间:2019-12-31 17:08:02    阅读次数:83
实验7 文件
Part1: 验证性实验验证性实验2 for(i=0; i<N; i++) ↓↓↓ 改为 while( !feof(fp) ) 运行结果正确 // 从文本文件file1.dat中读取数据,找出最高分和最低分学生信息,并输出在屏幕上 #include <stdio.h> #include <stdli ...
分类:其他好文   时间:2019-12-28 12:59:50    阅读次数:65
实验七
验证性实验二:更改之后,程序依旧可以运行 part2: #include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef s ...
分类:其他好文   时间:2019-12-27 13:38:30    阅读次数:59
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-24 15:36:05    阅读次数:62
实验六
1.1 验证性内容 将数组大小N改为3后,测试内容及结果如下: 1.2 补足的程序段为: int findMinlist(STU s[], STU t[], int n) { int i,j,min,p; min=s[0].score; p=0; for(i=0;i<N-1;i++) { if(mi ...
分类:其他好文   时间:2019-12-22 22:51:21    阅读次数:94
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; typedef struct student { long no; char name[20]; int score; }STU; void input(STU s[], int n); in ...
分类:其他好文   时间:2019-12-22 20:22:29    阅读次数:96
126条   上一页 1 2 3 4 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!