资源简介
用C语言写的一个简单系统,供学习C语言的学习者参考
代码片段和文件信息
/*头文件*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
/*所有函数声明*/
int t();
void design();
void show_mouse();
void entry();
void ventry(char t[]int);
void search();
void search_date();
void search_name();
void display();
void del();
void deletion_name();
void deletion_date();
int delete_file();
void graph();
void graph1();
void graph2();
void bar1(int inscor1);
void bar2(int inscore2);
struct shop
{
char name[20];
int quantity;
float sale;
char id[10];
float total;
};
struct shop temp;
struct shop x[20];
FILE *ptr;
char a[10];
/*显示当前时间函数*/
int t(void)
{
time_t t;
time(&t);
gotoxy(2421);
printf(“Date: %s\n“ ctime(&t));
return 0;
}
/*显示光标位置函数*/
void show_mouse(void)
{
union REGS in out;
in.x.ax = 0x1;
int86(0x33 &in &out);
}
/*程序框架函数*/
void design()
{
int i;
clrscr();
textcolor(14);
gotoxy(22);
cprintf(“\xC9“);
gotoxy(32);
for(i=1;i<=74;i++)
cprintf(“\xCD“);
gotoxy(772);
cprintf(“\xBB“);
gotoxy(23);
cprintf(“\xBA“);gotoxy(24);cprintf(“\xBA“);gotoxy(25);cprintf(“\xBA“);
gotoxy(26);cprintf(“\xBA“);gotoxy(27);cprintf(“\xBA“);gotoxy(28);cprintf(“\xBA“);
gotoxy(29);cprintf(“\xBA“);gotoxy(210);cprintf(“\xBA“);gotoxy(211);cprintf(“\xBA“);gotoxy(212);cprintf(“\xBA“);
gotoxy(213);cprintf(“\xBA“);gotoxy(214);cprintf(“\xBA“);gotoxy(215);cprintf(“\xBA“);gotoxy(216);cprintf(“\xBA“);
gotoxy(217);cprintf(“\xBA“);gotoxy(218);cprintf(“\xBA“);gotoxy(222);cprintf(“\xCC“);
gotoxy(219);cprintf(“\xBA“);gotoxy(220);cprintf(“\xBA“);gotoxy(221);cprintf(“\xBA“);gotoxy(224);cprintf(“\xC8“);
gotoxy(223);cprintf(“\xBA“);
gotoxy(324);
for(i=1;i<=74;i++)
cprintf(“\xCD“);
gotoxy(7718);cprintf(“\xBA“);gotoxy(7719);cprintf(“\xBA“);gotoxy(7720);cprintf(“\xBA“);gotoxy(7721);cprintf(“\xBA“);gotoxy(7724);cprintf(“\xBC“);
gotoxy(7723);
cprintf(“\xBA“);
gotoxy(322);
for(i=1;i<=74;i++)
cprintf(“\xCD“);
gotoxy(7722);
cprintf(“\xB9“);
gotoxy(773);
cprintf(“\xBA“);gotoxy(774);cprintf(“\xBA“);gotoxy(775);cprintf(“\xBA“);
gotoxy(776);cprintf(“\xBA“);gotoxy(777);cprintf(“\xBA“);gotoxy(778);cprintf(“\xBA“);
gotoxy(779);cprintf(“\xBA“);gotoxy(7710);cprintf(“\xBA“);gotoxy(7711);cprintf(“\xBA“);gotoxy(7712);cprintf(“\xBA“);
gotoxy(7713);cprintf(“\xBA“);gotoxy(7714);cprintf(“\xBA“);gotoxy(7715);cprintf(“\xBA“);gotoxy(7716);cprintf(“\xBA“);
gotoxy(7717);cprintf(“\xBA“);
textcolor(4);
}
/*=================把接受的字符串类型转换整型或浮点型=================*/
void ventry(char t[]int code)
{
int i=0;
if(code==0)
{
while((t[i]=getch())!=‘\r‘ && i<30)
if((t[i]>=97 && t[i]<=122) || (t[i]>=65 && t[i]<=90) || t[i]==32 || t[i]==8)
{ printf(“%c“t[i]);
i++;
}
}
else if(code==1)
{
while((t[i]=ge
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 14236 2008-12-22 16:16 个人日常开支管理系统\个人日常开支管理系统.c
文件 160 2008-12-20 22:21 个人日常开支管理系统\SHOP.DAT
目录 0 2009-03-08 12:46 个人日常开支管理系统
----------- --------- ---------- ----- ----
14396 3
- 上一篇:MFC数字钟(基于VC6.0)
- 下一篇:没有了
相关资源
- c语言电子商务系统
- 小甲鱼C语言课件 源代码
- 将图片转换为C语言数组的程序
- C语言实现的一个内存泄漏检测程序
- DES加密算法C语言实现
- LINUX下命令行界面的C语言细胞游戏
- 用单片机控制蜂鸣器播放旋律程序(
- 学校超市选址问题(数据结构C语言版
- 电子时钟 有C语言程序,PROTEUS仿真图
- 尚观培训linux许巍老师关于c语言的课
- 算符优先语法分析器(C语言编写)
- 基于C语言的密码锁程序
- c语言字符串分割截取子串查找插入删
- c语言 教学信息管理系统
- c语言看发的网络协议 ,源代码
- 编译原理c语言编译器
- 线性回归算法c语言实现
- 基于C语言的模拟退火算法
- LU分解法解线性方程组的C语言代码
- 用C语言实现的一个打字游戏
- 手机话费管理系统(c语言编写)
- C语言实现的DES对称加密算法
- 餐饮管理系统(C语言编写)
- 数据结构,迷宫问题C语言版源代码
- 用c语言编写的学生选课系统
- 用C语言进行数字图像处理
- C语言 学生信息管理系统 源代码
- c语言小学生自然数四则运算测试程序
- 我的C语言寒假作业-学生通讯录系统(
- c语言程序设计报告 程序大全
评论
共有 条评论