
程序
巴豪
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PTA6-1 顺序表操作集 (20分)
函数接口定义: List MakeEmpty(); Position Find( List L, ElementType X ); bool Insert( List L, ElementType X, Position P ); bool Delete( List L, Position P ); 其中List结构定义如下: typedef int Position; typede...原创 2020-03-02 09:48:46 · 6239 阅读 · 6 评论 -
学生信息管理系统 简单版
#include <stdio.h> #include <stdlib.h> #define N 1000 typedef struct student { char ID[10]; char name[20]; char sex; float score[5]; float total; float avg; } STU; void display (vo...原创 2019-04-10 16:20:17 · 488 阅读 · 1 评论 -
事件提醒程序
#include <stdio.h> #include <stdlib.h> #include <time.h> enum weekday {Sun,Mon,Tue,Wed,Thu,Fri,Sat}; int main() { time_t rawtime; struct tm *timeinfo; enum weekday wday; timeinfo =lo...原创 2019-04-09 17:17:52 · 600 阅读 · 0 评论