C语言写的NPC管理系统

;

}NPC;

//

//  main.c

//  GitDeom

//

//  Created by 黄桥平 on 14/11/8.

//  Copyright (c) 2014年 黄桥平. All rights reserved.

//

#include <stdio.h>

#include<stdlib.h>

typedef struct _NPC

{

int hp;

int id;

int act;

int px,py;

char name[20];

}NPC;

typedef struct _Node

{

NPC dat;

struct _Node * pNext;

}Node;

Node * head=NULL;

int ids=0;

int getID(Node*p)

{

int i;

while (p!=NULL)

{

printf("ID:%d,名字:%s,HP:%d\n",p->dat.id,p->dat.name,p->dat.hp);

p=p->pNext;

}    scanf("%d",&i);

return 0;

}

void AddNPC()

{

printf("添加一个NPC玩家");

}

void DeleteNpc()

{

}

void PrintNpc()

{

}

void InsertNpc()

{

}

int main(int argc, const char * argv[]) {

printf("欢迎进入NPC管理系统");

printf("\n作者: 一品堂工作室 ");

printf("\n2014作品");

while (1)

{

printf("\n\n功能列表:");

printf("\n添加NPC");

printf("\n删除NPC");

printf("\n输出NPC");

printf("\n插入NPC");

printf("\n退出系统");

printf("\n请输入需要查询内容的编号:");

int n;

scanf("%d",&n);

switch (n) {

case 1:

break;

case 2:

break;

case 3:

break;

case 4:

break;

case 5:

printf("退出系统成功");

return 0;

default:

printf("请输入正确的编号");

break;

}

}

return 0;

}

时间: 2024-10-11 13:46:24

C语言写的NPC管理系统的相关文章

《C语言编写 学生成绩管理系统》

/* (程序头部凝视開始)* 程序的版权和版本号声明部分* Copyright (c) 2011, 烟台大学计算机学院学生 * All rights reserved.* 文件名: 学生成绩管理系统 * 作 者: 刘江波 * 完毕日期: 2012 年 6 月 23 日* 版 本 号: v.623 * 对任务及求解方法的描写叙述部分 * 程序头部的凝视结束 */ #include "stdio.h" #include"string" /*定义学生结构体*/ struc

用链表写的学生管理系统 成绩的录入与查询都已经是实现了

#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct teacher { char name[32]; int math; int english; int data; struct Node *next; }SLIST; int Creat_SList(); int SList_Print(); int SLis

JAVA调用C语言写的SO文件

JAVA调用C语言写的SO文件 因为工作需要写一份SO文件,作为手机硬件IC读卡和APK交互的桥梁,也就是中间件,看了网上有说到JNI接口技术实现,这里转载了一个实例 1 // 用JNI实现 2 // 实例: 3 4 // 创建HelloWorld.java 5 class HelloWorld 6 { 7 private native void print(); 8 public static void main(String[] args) 9 { 10 new HelloWorld().p

今天看到一个网站不知道是用什么语言写的

今天看到一个网站不知道是用什么语言写的网站(www.kufangwuyou.com)不知道这是怎么回事一直费解,想换成div+cdd的!

用C语言写解释器(一)——我们的目标

声明 为提高教学质量,我所在的学院正在筹划编写C语言教材.<用C语言写解释器>系列文章经整理后将收入书中"综合实验"一章.因此该系列的文章主要阅读对象定为刚学完C语言的学生(不要求有数据结构等其它知识),所以行文比較罗嗦,请勿见怪.本人水平有限,如有描写叙述不恰当或错误之处请指教!特此声明. 起因 近期,我们学院老师联系我,希望我能提供一段用 C 语言编写的 BASIC 解释器,用于 C 语言课程设计教学.我前段时间也正好着迷于"语言"本身,本就有打算写

如何判断一个网址是由哪种语言写的

一般的情况看页面的后缀名 Server Side Includes 技术,拓展名为.shtml或.html或.htm PHP技术,拓展名为.php JSP技术,拓展名为.jsp或.jsf(JSF技术是JSP技术的拓展) ASP.NET技术,拓展名为.aspx (x 代表extension) ASP技术,拓展名为.asp ColdFusion技术,拓展名为.cfc 好点的网站,一般用资源转向功能(就向JSP中web.xml定义的名字,把HOME转向到home.jsp,就隐藏了拓展名).或者用Apa

[C语言练习]学生学籍管理系统

? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

C 语言写的爱情诗歌

/* ******************************************* ***** File Name: Love.c ***** Description: Love Story about you and me ***** Author: JPing.Cai ***** Date: 2014-5-10 ***** Last Version: 1.0 * *******************************************/ #include <stdio

自己用C语言写dsPIC单片机的serial bootloader

HyperBootloader_dsPIC HyperBootloader_dsPIC是我用C语言实现的serial bootloader, 适用于dsPIC30, dsPIC33,同样适用于PIC24.单片机端bootloader是用XC16编译的,电脑端的通信软件是用超级终端--HyperTerminal. dsPIC30 和 dsPIC33 程序存储器 dsPIC30,dsPIC33, PIC24的程序存储器架构都一样,只是大小,和vector位置有所不同.下图所示的是dsPIC30和ds