题目链接:https://pintia.cn/problem-sets/994805260223102976/problems/1071786104348536832 PAT 准考证号由 4 部分组成: 第 1 位是级别,即 T 代表顶级;A 代表甲级;B 代表乙级; 第 2~4 位是考场编号,范围 ...
分类:
其他好文 时间:
2020-02-01 16:00:42
阅读次数:
66
Web服务器: 基本功能就是提供Web信息浏览服务。它只需支持HTTP协议、HTML文档格式及URL。与客户端的网络浏览器配合。因为Web服务器主要支持的协议就是HTTP,所以通常情况下HTTP服务器和WEB服务器是相等的(有没有支持除HTTP之外的协议的web服务器,作者没有考证过),说的是一回事 ...
分类:
Web程序 时间:
2020-01-14 23:54:48
阅读次数:
195
#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 16:53:29
阅读次数:
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
#include<stdio.h> #include<stdlib.h> int main() { FILE *fp; char ch; fp=fopen("file1.dat","rb"); while(!feof(fp)) { ch=fgetc(fp); putchar(ch); } fclos ...
分类:
其他好文 时间:
2019-12-29 15:17:34
阅读次数:
120
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