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

搜索资源列表

  1. c语言经典程序100例

  2. 经典C源程序100例 【程序1】 题 2.程序源代码: main() { int i,j,k; printf("\n"); for(i=1;i<5;i++)    /*以下为三重循环*/  for(j=1;j<5;j++)    for (k=1;k<5;k++)    {     if (i!=k&&i!=j&&j!=k)    /*确保i、j、k三位互不相同*/     printf("%d,%d,%d\n& quot;,i,j,k);    } } ==========
  3. 所属分类:C

    • 发布日期:2009-05-02
    • 文件大小:351232
    • 提供者:frj0315
  1. java语言 实现日历

  2. 随便输入年份和月份,即会出现次月的日历 int year=0; int month=0; year=Integer.parseInt(JOptionPane.showInputDialog("请输入年份:")); month=Integer.parseInt(JOptionPane.showInputDialog("请输入月份:")); Calender cal=new Calender(year,month);
  3. 所属分类:Java

    • 发布日期:2009-05-08
    • 文件大小:3072
    • 提供者:yazhen745920
  1. 时钟芯片DS12c887

  2. Drop-in replacement for IBM AT computer clock/calendar  Pin compatible with the MC146818B and DS1287  Totally nonvolatile with over 10 years of operation in the absence of power  Self-contained subsystem includes lithium, quartz, and support circ
  3. 所属分类:嵌入式

    • 发布日期:2009-05-10
    • 文件大小:199680
    • 提供者:zilanchenxingyu
  1. 校园信息管理系统之容器法

  2. #include #include #include "head.h" //--------------------------------------- long Student::returnsort(){return id;} void Student::show() { cout<<"*************************"<<endl; cout& lt;<"编号:"<<id<<endl; cout<<
  3. 所属分类:C

    • 发布日期:2009-05-11
    • 文件大小:149504
    • 提供者:ssybb
  1. 校园信息管理系弘之模板法

  2. #include #include #include #include "Class.h" #define ok 1 #define error 0 void tongji::tsave() //保存统计对象 { ofstream outfile("statics.dat",ios::out); if(!ou tfile) { cerr<<"open error!"<<endl; exit(1); } outfile<<tcount<<"
  3. 所属分类:iOS

    • 发布日期:2009-05-11
    • 文件大小:6144
    • 提供者:ssybb
  1. 大学英语综合教程第二册课文

  2. Ways of Learning Part I Pre-Reading Task Listen to the recording two or three times and then think over the following questions: 1. Who should teach whom? Is learning a one-way street? 2. Should we share our dreams for a better life with our parents
  3. 所属分类:Java

    • 发布日期:2009-05-18
    • 文件大小:71680
    • 提供者:xun110meng
  1. js 写的经典日历 很不错哦!非常漂亮!

  2. 不错的日历控件,web上直接可用js的 /* * Calendar * Language 0: Chinese, 1: English * 1.Put calendar into the element html use 'show()' * 2.Pop-up calendar use 'pop()' */ var Calendar = function( instanceId, language, startYear, endYear ){ if( typeof instanceId ==
  3. 所属分类:Web开发

    • 发布日期:2009-05-22
    • 文件大小:6144
    • 提供者:long_zhigang
  1. C语言程序设计标准教程

  2. 适用于初第七章:结构与联合 结构类型定义和结构变量说明   在实际问题中,一组数据往往具有不同的数据类型。例如, 在学生登记表中,姓名应为字符型;学号可为整型或字符型; 年龄应为整型;性别应为字符型;成绩可为整型或实型。 显然不能用一个数组来存放这一组数据。 因为数组中各元素的类型和长度都必须一致,以便于编译系统处理。为了解决这个问题,C语言中给出了另一种构造数据类型——“结构”。 它相当于其它高级语言中的记录。   “结构”是一种构造类型,它是由若干“成员”组成的。 每一个成员可以是一个基本
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:27648
    • 提供者:fanhaoqiang
  1. c语言程序设计标准教程

  2. 第八章:枚举,位运算 枚举   在实际问题中, 有些变量的取值被限定在一个有限的范围内。例如,一个星期内只有七天,一年只有十二个月, 一个班每周有六门课程等等。如果把这些量说明为整型, 字符型或其它类型显然是不妥当的。 为此,C语言提供了一种称为“枚举”的类型。在“枚举”类型的定义中列举出所有可能的取值, 被说明为该“枚举”类型的变量取值不能超过定义的范围。应该说明的是, 枚举类型是一种基本数据类型,而不是一种构造类型, 因为它不能再分解为任何基本类型。 枚举类型的定义和枚举变量的说明 一、枚
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:9216
    • 提供者:fanhaoqiang
  1. C语言程序设计经典例子

  2. 适用于初    经典c程序100例==1--10 【程序1】 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 1.程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去       掉不满足条件的排列。 2.程序源代码: #include "stdio.h" #include "conio.h" main() { int i,j,k; printf("\n"); for(i=1;i< ;5;i++) /*以下为三重循环*/ for
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:6144
    • 提供者:fanhaoqiang
  1. c 函数速查.chm

  2. c 函数迅速查找,学才轻松上手 函数名: absread, abswirte 功 能: 绝对磁盘扇区读、写数据 用 法: int absread(int drive, int nsects, int sectno, void *buffer); int abswrite(int drive, int nsects, in tsectno, void *buffer); 程序例: /* absread example */ #include #include #include #inclu
  3. 所属分类:Access

    • 发布日期:2009-05-28
    • 文件大小:98304
    • 提供者:yicajier
  1. java的控制台日历

  2. 是一个java的控制台的日历程序 import java.util.Scanner; class page100_calender{ private int year; private int firstStartDay; page100_calender(int year,int firstStartDay){ this.year=year; this.firstStartDay=firstStartDay; } public void printCalender(){ for(int i=
  3. 所属分类:Java

    • 发布日期:2009-05-29
    • 文件大小:3072
    • 提供者:zhaoxu_111
  1. 表单的验证

  2. 表单的验证一直是网页设计者头痛的问题,表单验证类 Validator就是为解决这个问题而写的,旨在使设计者从纷繁复杂的表单验证中解放出来,把精力集中于网页的设计和功能上的改进上。 Validator是基于Javascr ipt技术的伪静态类和对象的自定义属性,可以对网页中的表单项输入进行相应的验证,允许同一页面中同时验证多个表单,熟悉接口之后也可以对特定的表单项甚至仅仅是某个字符串进行验证。因为是伪静态类,所以在调用时不需要实例化,直接以"类名+.语法+属性或方法名"来调用 。此外,Vali
  3. 所属分类:Javascript

    • 发布日期:2007-08-19
    • 文件大小:121856
    • 提供者:mosup
  1. poj 1004 Financial Management

  2. Financial Management Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 49263 Accepted: 23921 Descr iption Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has decided
  3. 所属分类:C++

    • 发布日期:2009-06-01
    • 文件大小:265
    • 提供者:Lethe1989
  1. 图书管理系统(前言,需求分析,正文)

  2. 1.需求分析 问题描述: 该程序能实现对一本书进行采编入库、清除库存、借阅图书、归还图书且记录借书的用户信息,还有查找书、显示图书目录的功能,并且以该书的书号为关键字建立一个B_树。 输入形式: 书名和作者名分别采用一个长度为15的字符型数组来储存,如:Title: Data Structuers ; Writer: CAC 书的现存量和总存量为整型,取值范围为0~32767 ,CurrentAmount:10 ; TotalAmount: 12 书的简介采用一个长度为30的字符型数组来储存,
  3. 所属分类:C

    • 发布日期:2009-06-11
    • 文件大小:208896
    • 提供者:shuaigezuohe
  1. VOIP网络电话通信标准----H323通信协议

  2. The ITU Telecommunication Standardization Sector (ITU-T) is a permanent organ of the International Telecommunication Union. The ITU-T is responsible for studying technical, operating and tariff questions and issuing Recommendations on them with a vi
  3. 所属分类:网络基础

    • 发布日期:2009-06-13
    • 文件大小:290816
    • 提供者:Kevin_lixiang
  1. SQL模块考试用的答案

  2. .SELECT DAY('03/12/1998') 2.SELECT MONTH('11/15/1981') 3.SELECT YEAR('04/04/1982') 4.SELECT GETDATE() 5.SELECT DATEADD(day, 21,'1991-07-10 2:30:00.000') 6.SELECT DATEDIFF(day, '02/20/1999', '02/28/1999') 7.SELECT DATENAME(day, getdate()) 8.SELECT DA
  3. 所属分类:其它

    • 发布日期:2009-06-16
    • 文件大小:913408
    • 提供者:lzl76486211
  1. C#函数方法集 DataTable,DataView和DataGrid中一些容易混淆的概念,数据库连接大全

  2. 1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=currentTime.Day; 1.5 取当前时 int 时=currentTime.Hour; 1.6
  3. 所属分类:C#

    • 发布日期:2009-06-20
    • 文件大小:190464
    • 提供者:cfqlilei
  1. 文件系统设计的全部程序下载

  2. #define BlockSize 512 #define DirSize 32 #define RootSize 2 struct ReserveBlock{ int sysblocknum;/*文件系统总扇区数*/ int resblocknum;/*保留扇区扇区数*/ int fatblocknum;/*FAT表扇区数*/ int rootblocknum;/*根目录区扇区数*/ char fillchar[BlockSize-4*sizeof(int)];/*填充字节*/ }; str
  3. 所属分类:C/C++

    • 发布日期:2009-06-23
    • 文件大小:13312
    • 提供者:suran141
  1. 大学英语综合教程Ways of Learning

  2. Ways of Learning Part I Pre-Reading Task Listen to the recording two or three times and then think over the following questions: 1. Who should teach whom? Is learning a one-way street? 2. Should we share our dreams for a better life with our parents
  3. 所属分类:Java

    • 发布日期:2009-06-23
    • 文件大小:18432
    • 提供者:wangyu54746
« 1 2 3 45 6 7 8 9 10 ... 50 »