<div id="bottom">
<div id="bottomContent">
<script src="http://s4.cnzz.com/stat.php?id=3844991&web_id=3844991&online=1&show=line" language="JavaScript"></script>
<p>技术支持:酒泉在线网络传媒有限公司 电话:0937-2668999</p>
<div id="bottomMenu">{$=itransfer('new', 'm1', 'topx=10;tnum=30;genre=aboutus;osql= and ab_lng=#' & nlng & '#')}<a href="{$=get_actual_route('support')}/gbook/" target="_self">{$=itake('global.lng_menu.gbook', 'lng')}</a></div>
</div>
</div>
</body>
</html>
阅读全部
|
夏妍karen
贴于 2012年7月6日 14:46
hide
bbsi
/*
* video.h
*/
/* current video state/mode information */
extern short Vmode;
extern short Vwidth;
extern short Vpage;
#define MAXVMODE 16
/* video limit tables */
......................
阅读全部
|
zhujianlin
贴于 2012年7月3日 15:47
hide
bbsi
/*
exe2com 1.01 - an exe2bin replacement
by Chris Dunford/The Cove Software Group.
see exe2com.doc for more info.
usage: exe2com file [file]
usage is the same as exe2bin except:
1. Output defaults to COM rather than BIN
2. Binary fixup option not supported
3. Checksum not verified
4. Provides more useful error messages, and a warning if a
COM file is being created with initial IP != 0x100.
......................
阅读全部
|
zhujianlin
贴于 2012年7月2日 17:17
hide
bbsi
#include <stdio.h>
#include "string.h"
#define N 5
struct date
{
int month;
int day;
int year;
};
typedef struct /*自定义结构体*/
{ int num ; /*编号*/
char name[10]; /*姓名*/
......................
阅读全部
|
虎啸邪
贴于 2012年6月12日 18:16
hide
bbsi
#include <stdio.h>
#include "string.h"
#define N 5
struct date
{
int month;
int day;
int year;
};
typedef struct /*自定义结构体*/
{ int num ; /*编号*/
char name[10]; /*姓名*/
......................
阅读全部
|
虎啸邪
贴于 2012年6月12日 18:16
hide
bbsi
#include <stdio.h>
struct stu
{
char name[10];
int num;
int age;
char addr[15];
}boya[3],boyb[3],*pp,*qq;
main()
{
FILE *fp;
......................
阅读全部
|
chengjun0619
贴于 2012年6月10日 22:06
hide
bbsi
#include <stdio.h>
#include <string.h>
main()
{
FILE *fp;
char s[80],ch,key;
key=31;
if((fp=fopen("c:\\0.txt","r+"))==NULL)
{
printf("Cannot open file 0.txt");
getch();
exit(0);
......................
阅读全部
|
chengjun0619
贴于 2012年6月10日 22:03
hide
bbsi
公路收费系统模拟
设计内容:设计一个包含不少于10个收费站的高速公路网,公路里程和每公里的费用自行设定,编写程序模拟公路收费。
设计要求:选择合适的数据存储结构;(注:数据的输入可以是键盘输入或文件输入两种方式)输入上高速的收费站和下高速的收费站,系统计算两地之间的应缴费用。
阅读全部
|
紫暮梦夏
贴于 2012年6月10日 00:17
hide
bbsi