您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. mini2440 编程源码及资料

  2. /**************************************************************** NAME: u2440mon.c DESC: u2440mon entry point,menu,download HISTORY: Mar.25.2002:purnnamu: S3C2400X profile.c is ported for S3C2410X. Mar.27.2002:purnnamu: DMA is enabled. Apr.01.2002:p
  3. 所属分类:C

    • 发布日期:2009-05-14
    • 文件大小:4mb
    • 提供者:feizbc19821024
  1. c语言的一个管理系统

  2. #include #include #include #include #define ID struct id struct id { char name[20]; // xing ming int num; // xue hao int age; // nian ling char sex[2]; // xing bie char xi[20]; // xi bie char zhuan[20]; // zhuan ye char add[20]; // di zhi ID *next;
  3. 所属分类:C

    • 发布日期:2009-06-03
    • 文件大小:14kb
    • 提供者:umida
  1. 猜数字游戏c语言程序

  2. #include #include #include #include /************************************************************/ int menu(); int Level(); void start(int x); void list(); void help(); int quit(); struct PLAYER { cha r name[10]; int plscore; }; int s=1; /**********
  3. 所属分类:C

    • 发布日期:2009-06-17
    • 文件大小:17kb
    • 提供者:baiyetong
  1. 用C编写班级成绩管理系统

  2. 设计课题一:班级成绩管理系统 一、 问题描述: 对一个有N个学生的班级,每个学生有M门课程。该系统实现对班级成绩的录入、显示、修改、排序、保存等操作的管理。 二、功能要求: 1、本系统采用一个结构体数组,每个数据的结构应当包括:学号、姓名、M门课程名称。 2、本系统显示这样的菜单: 请选择系统功能项: a、 成绩录入 b、 成绩显示 c、 成绩保存 d、 成绩排序 e、 成绩修改(要求先输入密码) f、 成绩统计 (1) 显示每门课程成绩最高的学生的基本信息 (2) 显示每门课程的平均成绩 (
  3. 所属分类:C

    • 发布日期:2009-06-18
    • 文件大小:118kb
    • 提供者:fengyeyihao
  1. C语言高级编程技术-最爱欢迎的的编程语言之一

  2. 高级编程技术 介绍如何利用 TC 系统所提供的相关函数实现菜单设计、图形绘制、动画的播放、乐曲 的演奏、汉字的显示、图片的显现等技术,在讲述时,以问题-解答的方式来逐渐阐明。 1 文本的屏幕输出和键盘输入........................................................................................... 1 1.1 文本的屏幕输出..........................................
  3. 所属分类:C

    • 发布日期:2009-07-22
    • 文件大小:337kb
    • 提供者:randychenzc
  1. 关于c#课程设计即用C#编程计算器

  2. #include #include #include struct stud { long num; char name[20]; double score; }; typedef struct stucode { struct stud student ; struct stucode *next; }L; void menu(); void createlist(struct stucode **r
  3. 所属分类:C#

    • 发布日期:2009-11-22
    • 文件大小:57kb
    • 提供者:wjjiao
  1. C++ 小型复数计算器

  2. #include #include #include #include #include #include #define EPS 1e-5 //定义精度常数 using namespace std; //使用标准空间命名std namespace NameCComplex //定义命名空间NameCComplex { class CComplex ////定义一个CComplex类 { private: double Real,Image; public: CComplex(double r
  3. 所属分类:iOS

    • 发布日期:2009-12-02
    • 文件大小:11kb
    • 提供者:Librawei
  1. 学生成绩管理系统C++

  2. 相当不错的一个成绩管理系统 #include #include #include #include using namespace std; enum {SUBJECT=5};//一共五门 typedef struct { char subject[10];//科目名称 int score;//科目成绩 }markinfo; typedef struct studentnode { markinfo mark[SUBJECT]; int totalmark; char name[10];//学
  3. 所属分类:iOS

    • 发布日期:2009-12-12
    • 文件大小:968kb
    • 提供者:ljr915
  1. 数字信号处理在双音多频拨号系统中的应用

  2. function varargout = key1(varargin) % KEY1 M-file for key1.fig % KEY1, by itself, creates a new KEY1 or raises the existing % singleton*. % % H = KEY1 returns the handle to a new KEY1 or the handle to % the existing singleton*. % % KEY1('CALLBACK',h
  3. 所属分类:其它

    • 发布日期:2009-12-14
    • 文件大小:25kb
    • 提供者:hebaolin
  1. C语言_学生管理系统

  2. 这是本人自己的东西,能编译通过了。希望大家下载后仔细阅读源代码。 #include #include #include #include //宏定义 #define length 10 #define MES (struct studentMessage *)malloc(sizeof(struct studentMessage)); #define MAR (struct studentMark *)malloc(sizeof(struct studentMark)); char s
  3. 所属分类:C

  1. matlab写的小游戏-猜数字

  2. function varargout = caishuzi(varargin) %CAISHUZI M-file for caishuzi.fig % CAISHUZI, by itself, creates a new CAISHUZI or raises the existing % singleton*. % % H = CAISHUZI returns the handle to a new CAISHUZI or the handle to % the existing single
  3. 所属分类:其它

    • 发布日期:2010-01-17
    • 文件大小:7kb
    • 提供者:yanbingke
  1. c语言编写的图书管理系统

  2. 程序开始定义一个存储单个图书相关信息的结构体 struct bk { int num1; char str1[20]; char str2[20]; int num2; char str3[20]; float num3; struct bk * next; }; 然后利用链表存储一系列图书的信息。 除了那些功能函数外,该程序还定义了一个现实菜单的函数menu();在main函数中先调用menu函数并提示用户选择所要使用的功能,通过switch语句来调用相应功能函数来实现相应功能。其中两功能函
  3. 所属分类:C

    • 发布日期:2010-04-23
    • 文件大小:9kb
    • 提供者:zhuqianfang
  1. 数据结构哈希表实现通讯录

  2. #include #include #include using namespace std; #define NULL 0 unsigned int key; //用来输入/输出文件流类 unsigned int key2; //key和key2分别是用做了电话号码和姓名的关键字 int *p; struct node //新建节点(用户姓名、地址、电话号码、指向下一个结点的指针 ) { char name[8],address[20]; char num[11]; node * next;
  3. 所属分类:iOS

    • 发布日期:2010-05-26
    • 文件大小:98kb
    • 提供者:haichaozhuo
  1. 计算机操作系统fcfs算法

  2. #include "string" #include "iostream" #define N 3 using namespace std; struct Gzuo{ char Id; int Arrtime; //到达时间 int Sevtime; //运行时间 int Fintime; //完成时间 int Runtime; //周转时间 float Wtime; //带权周转时间 }; Gzuo jobline[N]; void Menu() { cout<<"a.输入"&l
  3. 所属分类:其它

    • 发布日期:2010-06-09
    • 文件大小:2kb
    • 提供者:endstyle
  1. C课设#音译汉程序,好资源

  2. #include #include #include struct dictionary { char english[20]; char chinese[20]; struct dictionary* next;/*指针*/ }; typedef struct dictionary dic;/*定义一个dic类型*/ dic* head, * end;/*全局变量*/ /* 函数1——菜单 */ /* 作用:打印出操作界面,让系统以菜单的方式工作 */ int Menu() { int co
  3. 所属分类:C/C++

    • 发布日期:2010-06-17
    • 文件大小:3kb
    • 提供者:nczhangjie
  1. C++ 容器 实现 银行系统管理

  2. enum Menu{MAIN,USER}; //菜单类型(主菜单,个人系统菜单) enum State{HOOKED,UNHOOKED}; //用户状态(挂失,未挂失) struct user { string number;//卡号 string name;//姓名 string id;//身份证号 string password;//密码 State state;//状态 int money;//账户金额 }; //用户
  3. 所属分类:C++

    • 发布日期:2010-06-27
    • 文件大小:11kb
    • 提供者:yuyijing
  1. Using LUA with Visual C++ (Introduction)

  2. What is LUA? LUA is a scr ipting language, its power lies in the fact that it can be embedded in your C++ programs. scr ipts give you the possibility to change the behaviour of your C++ programs without any need to recompile your program. A real wor
  3. 所属分类:C++

    • 发布日期:2010-07-27
    • 文件大小:289kb
    • 提供者:hloveloveu
  1. Lcc C Compiler

  2. aWhat's new in the new version of lcc-win ---------------------------------------- Dec 3: Added SphericalBesselY + SphericalBesselK + SphericalBesselJ to the special functions package. Updated the documentation. Dec 2: Fixed problems with comparison
  3. 所属分类:C

    • 发布日期:2010-09-30
    • 文件大小:6mb
    • 提供者:ywj1225
  1. Programming with Lcc-win

  2. Chapter 1 Introduction to C 1 Why learn C? 1 Program organization 2 Hello 3 Program input 4 What are “function parameters” ? 5 Console mode programs and windows programs 6 An overview of the compilation process 6 The run time environment 7 An overvi
  3. 所属分类:C

    • 发布日期:2010-09-30
    • 文件大小:2mb
    • 提供者:ywj1225
  1. struct-menu

  2. 动态菜单的制作方法.........
  3. 所属分类:Java

    • 发布日期:2008-07-22
    • 文件大小:914kb
    • 提供者:lichao1109
« 12 3 4 »