自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

程序员黄老师的精品课!

Stay hungry ,Stay foolish!

  • 博客(12)
  • 资源 (51)
  • 收藏
  • 关注

原创 C语言运算测试系统

<br />#include<stdio.h><br />#include<string.h><br />#include<stdlib.h><br />#include<conio.h><br /> <br />struct  question<br />{<br />char  level;//级别<br />char  qu[40];//问题<br />char an[20];//答案<br />};<br /> <br />struct  qnode//链表结构体<br />{<br />struc

2010-10-30 01:07:00 708

原创 C语言银行系统

<br /> #include<stdio.h><br />#include<stdlib.h><br />#include<string.h><br />#include<conio.h><br />#include<process.h><br /><br />typedef struct a <br />{  <br />char num[30]; //帐号<br /> char name[30];//姓名<br />  char password[30];//密码<br />  float money

2010-10-30 01:06:00 2494

原创 C语言学生选课系统

<br />#include <stdio.h><br />#include <stdlib.h><br />#include <string.h><br />#include <conio.h><br />//课程结构体<br />typedef  struct cou<br />{<br />    char name[40];//课程名<br /> float sco;//成绩<br /> struct cou* next;<br />}cou;<br /><br />//学生结构体<br />typ

2010-10-30 01:05:00 8183

原创 C语言学籍管理系统

<br /> #include <stdio.h><br />#include <stdlib.h>//内存分配<br />#include <string.h>//字符串处理<br />#include <conio.h>//用于getch()<br /><br />typedef struct mark<br />{<br />char   num[20];//学号<br />int  ch;//语<br />int  ma;//数<br />int  en;//外<br />struct mark 

2010-10-30 01:03:00 1431

原创 C语言小区居民查询系统

<br />#include<stdio.h><br />#include<stdlib.h><br />#include<string.h><br />#include<conio.h><br /> typedef struct member//成员结构体<br /> {<br /> char name[30];//姓名 <br /> char born[10];//出生日<br /> int relation;//与户主关系<br /> int sex;//姓别<br /> struct member 

2010-10-30 01:01:00 1587

原创 C语言图书管理系统

<br />typedef  struct p1<br />{  char pname[30];//人的姓名<br />   char pnum[30];//人的学号<br />   char bname[4][30];//借的书名,最多四本<br />   int  bnum;//借书的数目<br />}p;<br />typedef  struct b1<br />{  char bname[30];  //书名<br />   char author[30];//书的作者<br />   char p

2010-10-30 00:59:00 1846

原创 C语言鱼类管理系统

<br />#include <stdio.h><br />#include <stdlib.h>//内存分配<br />#include <string.h>//字符串处理<br />#include <conio.h>//用于getch()<br /><br />typedef struct fish<br />{<br />char   name[20];//鱼名<br />float  price;//价格<br />int    num;//总数量<br />int    sell;//卖出的数量

2010-10-30 00:58:00 1070

原创 C语言火车售票系统

<br /><br />#include<stdio.h><br />#include<string.h><br />#include<conio.h>//getch<br />#include<stdlib.h>//动态分配<br /><br />typedef  struct  route//路线<br />{<br />char  num[30];//车次<br />char  start[40];//起点<br />char  end[40];//终点<br />char  time[10];//时

2010-10-30 00:55:00 6206 4

原创 C语言航空售票系统

<br />#include<stdio.h><br />#include<stdlib.h><br />#include<string.h><br />#include<conio.h><br /> <br /> <br />struct hb<br />{   char num[20];//航班号<br /> char start[20]; //出发站<br />    char end[20]; //到达站<br /> char time[20];//起飞时间<br />    int  fee;//

2010-10-30 00:50:00 3725

原创 C语言公交查询系统

#include #include #include #include struct bus {char num[30];//车号char driver[50];//司机char stime[30];//发车时间char start[30];//起始站char end[30];//终点站int  z;//站数char *pr;//指向路线的首指针 struct bus *next;//下一辆车的结构体};/*特色在于,因为每个公汽的路线不一样,所以用指针而不用数组,指针指向于内存中的某一地址,退出时把路线信

2010-10-30 00:40:00 6012 4

原创 C语言工资管理系统

<br /><br />#include <stdio.h><br />#include <stdlib.h><br />#include <string.h><br />#include <conio.h><br /> <br /> <br /><br />typedef  struct salary//薪水结构体<br />{<br />int      month;//月份<br />float    reward;//奖励<br />float    deduct;//扣除<br />float  

2010-10-30 00:36:00 3524

原创 C语言超市收银系统

<br />#include<stdio.h><br />#include<stdlib.h>//分配函数<br />#include<string.h>//字符串操作<br />#include<conio.h>//getch()<br /> <br />struct good//商品结构体<br />{<br />char  name[20];//商品名称<br />float  price;//价格<br />int   n1;//总件数<br />int   n2;//已卖出<br />};<br

2010-10-30 00:33:00 10195 3

阿里云发送短信C++源码、实测通过

1.阿里云发送短信C++源码 2.VS2019编译实测通过 3.相关Key 需要替换成自己申请的

2022-01-24

3天掌握SQL Server 2012 数据库脚本.rar

黄强老师《3天掌握SQL Server 2012 数据库》视频课程配套脚本

2022-01-10

黄强老师、从小白入门C++源码.rar

黄强老师《从小白入门C++》视频课程配套源码

2022-01-10

黄强老师、从小白入门C语言源码.rar

黄强老师《从小白入门C语言》视频课程配套源码

2022-01-10

黄强老师、从小白入门MFC源码.rar

黄强老师《从小白入门MFC》视频课程配套源码

2022-01-10

黄强老师、C++模板高级编程源码.rar

黄强老师《C++模板高级编程》视频课程配套源码

2022-01-10

黄强老师、从新手小白进入C#编程源码.rar

黄强老师《从新手小白进入C#编程》视频课程配套源码

2022-01-10

黄强老师、Qt串口编程 Modbus编程源码.rar

黄强老师《Qt串口编程 Modbus编程》视频课程配套源码

2022-01-10

黄强老师、Qt多线程编程源码.rar

黄强老师《Qt多线程编程》视频课程源码

2022-01-10

Qt_Android_MySQL_Plugin.zip

qt 5.12.11 Android MySQL 插件的编译脚本

2021-11-22

mysql-connector-c-6.1.11-win32.msi

32位的mysql 8 连接器

2021-11-17

UGUI Super ScrollView 最新版2.3.2

在unity assetstore 最新付费$39 下载的UGUI Super ScrollView 最新版2.3.2, 奉献给大家享用!

2019-02-23

directx7.0sdk完整SDK,亲测可用

directx7.0sdk完整SDK,亲测可用,用于游戏项目,已经成功与VC6.0调试通过!

2018-08-29

icePubDLL.dll

icePubDLL Ice Public DLL 冰雪公开发布的动态链接库

2018-03-20

vs2013编译mysql c++ connector

官网的适用VS2008 , vs2013编译mysql c++ connector 后可以正常使用!

2017-10-10

IO多路复用之poll——完整代码

IO多路复用之poll——完整代码

2017-07-27

IO多路复用之select——完整代码

IO多路复用之select——完整代码

2017-07-27

VS2010-MFC编程入门教程

VS2010 MFC 编程 入门教程 , 新手专用

2017-07-18

类VC界面bardemo

类VC6.0界面 bardemo CSizingControlBar

2017-07-18

高质量C++C编程指南(林锐博士)

高质量C++C编程指南(林锐博士),很好的教材

2017-03-30

精通C#+3.0与.NET+3.5高级编程+的源代码.rar

精通C#+3.0与.NET+3.5高级编程+的源代码.rar

2012-05-31

C#+3.0与.NET+3.5高级编程

C#+3.0与.NET+3.5高级编程

2012-05-31

LINQ从入门到精通

LINQ从入门到精通

2012-05-31

LINQ中文教程.pdf

LINQ中文教程.pdf

2012-05-31

WPF编程宝典 C#+2010版

WPF编程宝典——C#+2010版

2012-04-26

3DES 加密算法 MFC

3DES DES加密算法 MFC DEMO

2011-11-26

OpenGL编程指南(第六版).pdf

OpenGL编程指南(第六版).pdf ),学习openGL必备

2011-10-23

OpenGL超级宝典+第4版+中文版4_1.pdf )

OpenGL超级宝典+第4版+中文版4_1.pdf )

2011-10-23

openGL超级宝典(第四版)

openGL超级宝典(第四版).学习openGL必备

2011-10-23

OpenGL 中文版chm .CKER翻译].

OpenGL 中文版chm .CKER翻译].学习OPENGL必备

2011-10-23

openGL的实用工具包 GLUT库

openGL的实用工具包 GLUT库,2. Inside the folder you should have: glut.dll glut32.dll glut.h glut.lib glut32.lib

2011-10-23

Visual+C++游戏编程基础(源码),肖永亮

Visual+C++游戏编程基础(源码),网上最全的,肖永亮

2011-10-16

学VC,编游戏(电子书教程+C++源代码+%2B+游戏资源)

学VC,编游戏 学VC,编游戏,2D有例子

2011-10-10

MSChart ,TeeChart使用方法

MSChart ,TeeChart使用方法 ,用于绘制图表,柱图

2011-10-07

网上最全的LearnVC[学VC、编游戏](学opengl编3d游戏_cai的姐妹篇

网上最全的LearnVC[学VC、编游戏](学opengl编3d游戏_cai的姐妹篇 ,教你如何C++开发游戏

2011-10-07

模板元编程技术pdf

模板元编程,很好的资料,适合学习与开发 ,大家放心下载

2011-09-21

C++模板元编程

C++模板元编程,很好的学习资料,模板元编程技术与应用_荣耀

2011-09-21

《MFC类库详解》

《MFC类库详解》,最新学习资源 ,1.5M

2011-09-10

Cimage使用事例

Cimage 的使用,很好的学习例子,不错

2011-09-07

CRectTracker 实例程序

CRectTracker 橡皮精类使用程序,便于学习

2011-09-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除