CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 界面编程 其它 搜索资源 - INPUT.C

搜索资源列表

  1. 438372汉字平台系统

    0下载:
  2. 本说明中包括在《C语言的窗口式图形界面技术》付梓之后对HANENV系统的最新修改。 我们为HANENV系统增加了一个新的输入法模块:双拼拼音模块,包括全拼双音、双拼双音和多字词的词组输入法。新的输入法模块为_SYmode,其使用方法和原来的拼音输入法类似。首先在应用程序的首部使用下列语句安装双音模块:-this note included in the "C language window-type graphical interface technology" to be
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.76mb
    • 提供者:物语
  1. 录入编辑

    0下载:
  2. A) 实现虚拟存储B) 实现对文件的按名存取C) 实现对文件的按内容存取D) 实现对文件的 高速输入输出(17) 分页显示当前文件 ... A) 执行SPLIB B) 执行SPDOS C) 装载拼音模块D) 装载五笔字型输入模块(32) 在汉字输入状态下,按下Shift+a组合键后,输入了__。-A) Virtual Storage B) the realization of the documents were accessed by C) achieved by the paper'
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:43.18kb
    • 提供者:蒋磊
  1. TC2.0库函数查询 V1.0

    1下载:
  2. 本软件一共收录了355个TC2.0库函数,每一个函数都提供了相应的头文件,函数用途,函数全称,输入输出参数,函数的返回值,以及函数是如果应用的例子。提供了按功能分类,字母分类,直接输入,下拉列表等快速查询。是学习C语言,C++语言的好助手。希望能给C,C++编程爱好者一点帮助,学习好C语言。-The software contains 355 WITH TC 2.0 libraries, each provide a function corresponding to the first doc
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:41.92kb
    • 提供者:苏宛新
  1. 8051_portio

    0下载:
  2. 8051系列单片机的输入输出口的c语言的简单的操作例程-8051 input and output of all of the c language simple routine operation
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4.86kb
    • 提供者:谢智强
  1. xiannon

    0下载:
  2. 这是先农编码,是用C++编辑的,能对输入的六个信息进行,先农编码-This is the first agricultural coding, is the editor in C, can input information for six first agricultural coding
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:796byte
    • 提供者:奚波
  1. syi

    0下载:
  2. C语言程序设计源程序!实现学生的输入,查询,插入,删除等功能-C programming language source code! Students realize the input, inquiries, insert, delete function
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.55kb
    • 提供者:沈永吉
  1. sprintf

    0下载:
  2. C语言输入输出不同数据类型格式转换问题,字符串和数值-C language input and output data types different format conversion, and numerical string
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3.89kb
    • 提供者:ghost2008
  1. 12-3

    0下载:
  2. 关于如何走出迷宫的c语言程序,首先从键盘上输入迷宫进、出口位置,即可在屏幕上显示出口路线图。-on how out of the labyrinth c language program, the first from the keyboard input maze imports and exports position, can be displayed on the screen export the road map.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.47kb
    • 提供者:孙红艳
  1. hwSOAPmy

    1下载:
  2. 收SP下行消息 A. 启动MMSC侦听端口 在模拟器界面的右下角的\"Liten Port\"文本框中输入MMSC的侦听端口,这个值是为接收SP发出的下行消息提供服务的端口号,比如:\"8080\",按下\"Start\"按钮启动MMSC侦听服务。 B. 接收消息 接收的是从SP(API)发来的消息,处理后回一条响应消息。 2 模拟MMSC向SP发送上行消息 A. 选择模拟器左边界面的MessageType为“DeliverReq”; B. “Send To”文
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:5.55mb
    • 提供者:泡泡龙
  1. C++iostreamxiangxijieshao

    0下载:
  2. 这里面详细的介绍了c++的流输入输出的函数,叙述详尽,内容很全,请大家参考!-detailed introduction to the c + + input and output flow of the function, described in detail, as is the whole, Please reference!
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:28.58kb
    • 提供者:tiandong
  1. leap20

    0下载:
  2. 输入:以十进制的形式读入要判断的年份,从键盘取得的一个十进制数转换为二进制数存入BX寄存器中,再将BX中的内容保存在变量year中。 判断:首先将year中的内容首先除以4,不能被4整除,则一定不是闰年,能被4整除的,需再将year中的内容除以100,不能被100整除的,则一定是闰年,能被100整除的,需再将year中的内容除以400,能被400整除的,则是闰年,不能被400整除的,则不是闰年。 输出:经判断后,是闰年的输出“This is a leap year!”,不是闰年的则输
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:78.67kb
    • 提供者:zn
  1. c++123

    0下载:
  2. #include<iostream> using namespace std class ABC { private: double i,j public: ABC(int x,int y):i(x),j(y) {} ABC() {} double add() { return i+j } double jian() { return i-j } double cheng() { ret
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:548byte
    • 提供者:飞鹰
  1. translate2

    0下载:
  2. c语言程序,将阿拉伯数字翻译成英文。如输入:792677321 输出:seven hundred ninety-two million six hundred seventy-seven thousand three hundred twenty-one -c language program will be translated into Arabic and English. If input : 792677321 output : seven hundred ninety-two
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:988byte
    • 提供者:yy
  1. student_score_system

    0下载:
  2. 简易的学生成绩录入系统,主要功能包括成绩录入,学号更新... 适合初次接触C++的人,学习使用C++开发环境-summary of the performance of their students logging system, the main features include Input, Science Update ... for the initial contact with the C + +, to learn how to use C + + development en
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:11.98kb
    • 提供者:nelson
  1. 4

    0下载:
  2. 学会对文件的记录锁定,及解锁。#include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd int i struct { char name[20] uint ID int age } myrec fd =open(\"name\", O_RDWR|O_CREAT, 0755)
  3. 所属分类:其它

    • 发布日期:2014-01-16
    • 文件大小:9.08kb
    • 提供者:华羿
  1. BLKLIB

    0下载:
  2. 缓冲区数据输入与输出C语言源程序库  -buffer data input and output for C language source
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:42.03kb
    • 提供者:叶雨清秋
  1. 中序遍历程序

    0下载:
  2. 一个C++的中序遍历程序,输入一组数据后能中序遍历并升序输出。-one C and the preorder procedures, a data input after which preorder and ascending output.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7.34kb
    • 提供者:李白
  1. 文件程序

    0下载:
  2. 用c语言实现的一些文件操作的的程序 复制,读取,输入输出-Some of the operation of the paper copy, read, input and output, etc.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4.66kb
    • 提供者:沈焱峰
  1. 缓冲区数据输入与输出c语言源程序库

    0下载:
  2. 缓冲区数据输入与输出c语言源程序-buffer data input and output source language c
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:43.01kb
    • 提供者:朱晓玲
  1. 有限自动机C++

    0下载:
  2. 利用状态表和有限自动机的运行原理编制程序,使得程序能够识别一个输入串是否为一个有效的符号串-tables and the use of the limited state of the automatic machine operation principle procedures, making procedures to identify whether an input string as a symbol effective Series
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.9kb
    • 提供者:李定丰
« 12 »
搜珍网 www.dssz.com