求助用C语言程序设计一个计算器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求助用C语言程序设计一个计算器相关的知识,希望对你有一定的参考价值。
问题描述:利用TC具有的函数模仿画出计算器的界面,实现计算机的基本功能,进行浮点加,减,除,乘方和求模运行。
满意答案给予100分追加
我想用VC来做,但是编译时出现e:\ppp\iiiii\n.c(7) : fatal error C1083: Cannot open include file: 'graphics.h': No such file or directory
这个错误,VC include里面没有'graphics.h'文件
请问高手该怎么改
#include <dos.h> /*DOS接口函数*/
#include <math.h> /*数学函数的定义*/
#include <conio.h> /*屏幕操作函数*/
#include <stdio.h> /*I/O函数*/
#include <stdlib.h> /*库函数*/
#include <stdarg.h> /*变量长度参数表*/
#include <graphics.h> /*图形函数*/
#include <string.h> /*字符串函数*/
#include <ctype.h> /*字符操作函数*/
#define UP 0x48 /*光标上移键*/
#define DOWN 0x50 /*光标下移键*/
#define LEFT 0x4b /*光标左移键*/
#define RIGHT 0x4d /*光标右移键*/
#define ENTER 0x0d /*回车键*/
void *rar; /*全局变量,保存光标图象*/
struct palettetype palette; /*使用调色板信息*/
int GraphDriver; /* 图形设备驱动*/
int GraphMode; /* 图形模式值*/
int ErrorCode; /* 错误代码*/
int MaxColors; /* 可用颜色的最大数值*/
int MaxX, MaxY; /* 屏幕的最大分辨率*/
double AspectRatio; /* 屏幕的像素比*/
void drawboder(void); /*画边框函数*/
void initialize(void); /*初始化函数*/
void computer(void); /*计算器计算函数*/
void changetextstyle(int font, int direction, int charsize); /*改变文本样式函数*/
void mwindow(char *header); /*窗口函数*/
int specialkey(void) ; /*获取特殊键函数*/
int arrow(); /*设置箭头光标函数*/
/*主函数*/
int main()
initialize();/* 设置系统进入图形模式 */
computer(); /*运行计算器 */
closegraph();/*系统关闭图形模式返回文本模式*/
return(0); /*结束程序*/
/* 设置系统进入图形模式 */
void initialize(void)
int xasp, yasp; /* 用于读x和y方向纵横比*/
GraphDriver = DETECT; /* 自动检测显示器*/
initgraph( &GraphDriver, &GraphMode, "" );
/*初始化图形系统*/
ErrorCode = graphresult(); /*读初始化结果*/
if( ErrorCode != grOk ) /*如果初始化时出现错误*/
printf("Graphics System Error: %s\n",
grapherrormsg( ErrorCode ) ); /*显示错误代码*/
exit( 1 ); /*退出*/
getpalette( &palette ); /* 读面板信息*/
MaxColors = getmaxcolor() + 1; /* 读取颜色的最大值*/
MaxX = getmaxx(); /* 读屏幕尺寸 */
MaxY = getmaxy(); /* 读屏幕尺寸 */
getaspectratio( &xasp, &yasp ); /* 拷贝纵横比到变量中*/
AspectRatio = (double)xasp/(double)yasp;/* 计算纵横比值*/
/*计算器函数*/
void computer(void)
struct viewporttype vp; /*定义视口类型变量*/
int color, height, width;
int x, y,x0,y0, i, j,v,m,n,act,flag=1;
float num1=0,num2=0,result; /*操作数和计算结果变量*/
char cnum[5],str2[20]="",c,temp[20]="";
char str1[]="1230.456+-789*/Qc=^%";/* 定义字符串在按钮图形上显示的符号 */
mwindow( "Calculator" ); /* 显示主窗口 */
color = 7; /*设置灰颜色值*/
getviewsettings( &vp ); /* 读取当前窗口的大小*/
width=(vp.right+1)/10; /* 设置按钮宽度 */
height=(vp.bottom-10)/10 ; /*设置按钮高度 */
x = width /2; /*设置x的坐标值*/
y = height/2; /*设置y的坐标值*/
setfillstyle(SOLID_FILL, color+3);
bar( x+width*2, y, x+7*width, y+height );
/*画一个二维矩形条显示运算数和结果*/
setcolor( color+3 ); /*设置淡绿颜色边框线*/
rectangle( x+width*2, y, x+7*width, y+height );
/*画一个矩形边框线*/
setcolor(RED); /*设置颜色为红色*/
outtextxy(x+3*width,y+height/2,"0."); /*输出字符串"0."*/
x =2*width-width/2; /*设置x的坐标值*/
y =2*height+height/2; /*设置y的坐标值*/
for( j=0 ; j<4 ; ++j ) /*画按钮*/
for( i=0 ; i<5 ; ++i )
setfillstyle(SOLID_FILL, color);
setcolor(RED);
bar( x, y, x+width, y+height ); /*画一个矩形条*/
rectangle( x, y, x+width, y+height );
sprintf(str2,"%c",str1[j*5+i]);
/*将字符保存到str2中*/
outtextxy( x+(width/2), y+height/2, str2);
x =x+width+ (width / 2) ; /*移动列坐标*/
y +=(height/2)*3; /* 移动行坐标*/
x =2*width-width/2; /*复位列坐标*/
x0=2*width;
y0=3*height;
x=x0;
y=y0;
gotoxy(x,y); /*移动光标到x,y位置*/
arrow(); /*显示光标*/
putimage(x,y,rar,XOR_PUT);
m=0;
n=0;
strcpy(str2,""); /*设置str2为空串*/
while((v=specialkey())!=45) /*当压下Alt+x键结束程序,否则执行下面的循环*/
while((v=specialkey())!=ENTER) /*当压下键不是回车时*/
putimage(x,y,rar,XOR_PUT); /*显示光标图象*/
if(v==RIGHT) /*右移箭头时新位置计算*/
if(x>=x0+6*width)
/*如果右移,移到尾,则移动到最左边字符位置*/
x=x0;
m=0;
else
x=x+width+width/2;
m++;
/*否则,右移到下一个字符位置*/
if(v==LEFT) /*左移箭头时新位置计算*/
if(x<=x0)
x=x0+6*width;
m=4;
/*如果移到头,再左移,则移动到最右边字符位置*/
else
x=x-width-width/2;
m--;
/*否则,左移到前一个字符位置*/
if(v==UP) /*上移箭头时新位置计算*/
if(y<=y0)
y=y0+4*height+height/2;
n=3;
/*如果移到头,再上移,则移动到最下边字符位置*/
else
y=y-height-height/2;
n--;
/*否则,移到上边一个字符位置*/
if(v==DOWN) /*下移箭头时新位置计算*/
if(y>=7*height)
y=y0;
n=0;
/*如果移到尾,再下移,则移动到最上边字符位置*/
else
y=y+height+height/2;
n++;
/*否则,移到下边一个字符位置*/
putimage(x,y,rar,XOR_PUT); /*在新的位置显示光标箭头*/
c=str1[n*5+m]; /*将字符保存到变量c中*/
if(isdigit(c)||c=='.') /*判断是否是数字或小数点*/
if(flag==-1) /*如果标志为-1,表明为负数*/
strcpy(str2,"-"); /*将负号连接到字符串中*/
flag=1;
/*将标志值恢复为1*/
sprintf(temp,"%c",c); /*将字符保存到字符串变量temp中*/
strcat(str2,temp); /*将temp中的字符串连接到str2中*/
setfillstyle(SOLID_FILL,color+3);
bar(2*width+width/2,height/2,15*width/2,3*height/2);
outtextxy(5*width,height,str2); /*显示字符串*/
if(c=='+')
num1=atof(str2); /*将第一个操作数转换为浮点数*/
strcpy(str2,""); /*将str2清空*/
act=1; /*做计算加法标志值*/
setfillstyle(SOLID_FILL,color+3);
bar(2*width+width/2,height/2,15*width/2,3*height/2);
outtextxy(5*width,height,"0."); /*显示字符串*/
if(c=='-')
if(strcmp(str2,"")==0) /*如果str2为空,说明是负号,而不是减号*/
flag=-1; /*设置负数标志*/
else
num1=atof(str2); /*将第二个操作数转换为浮点数*/
strcpy(str2,""); /*将str2清空*/
act=2; /*做计算减法标志值*/
setfillstyle(SOLID_FILL,color+3);
bar(2*width+width/2,height/2,15*width/2,3*height/2); /*画矩形*/
outtextxy(5*width,height,"0."); /*显示字符串*/
if(c=='*')
num1=atof(str2); /*将第二个操作数转换为浮点数*/
strcpy(str2,""); /*将str2清空*/
act=3; /*做计算乘法标志值*/
setfillstyle(SOLID_FILL,color+3); bar(2*width+width/2,height/2,15*width/2,3*height/2);
outtextxy(5*width,height,"0."); /*显示字符串*/
if(c=='/')
num1=atof(str2); /*将第二个操作数转换为浮点数*/
strcpy(str2,""); /*将str2清空*/
act=4; /*做计算除法标志值*/
setfillstyle(SOLID_FILL,color+3);
bar(2*width+width/2,height/2,15*width/2,3*height/2);
outtextxy(5*width,height,"0."); /*显示字符串*/
if(c=='^')
num1=atof(str2); /*将第二个操作数转换为浮点数*/
strcpy(str2,""); /*将str2清空*/
act=5; /*做计算乘方标志值*/
setfillstyle(SOLID_FILL,color+3); /*设置用淡绿色实体填充*/
bar(2*width+width/2,height/2,15*width/2,3*height/2); /*画矩形*/
outtextxy(5*width,height,"0."); /*显示字符串*/
if(c=='%')
num1=atof(str2); /*将第二个操作数转换为浮点数*/
strcpy(str2,""); /*将str2清空*/
act=6; /*做计算模运算乘方标志值*/
setfillstyle(SOLID_FILL,color+3); /*设置用淡绿色实体填充*/
bar(2*width+width/2,height/2,15*width/2,3*height/2); /*画矩形*/
outtextxy(5*width,height,"0."); /*显示字符串*/
if(c=='=')
num2=atof(str2); /*将第二个操作数转换为浮点数*/
switch(act) /*根据运算符号计算*/
case 1:result=num1+num2;break; /*做加法*/
case 2:result=num1-num2;break; /*做减法*/
case 3:result=num1*num2;break; /*做乘法*/
case 4:result=num1/num2;break; /*做除法*/
case 5:result=pow(num1,num2);break; /*做x的y次方*/
case 6:result=fmod(num1,num2);break; /*做模运算*/
setfillstyle(SOLID_FILL,color+3); /*设置用淡绿色实体填充*/
bar(2*width+width/2,height/2,15*width/2,3*height/2); /*覆盖结果区*/
sprintf(temp,"%f",result); /*将结果保存到temp中*/
outtextxy(5*width,height,temp); /*显示结果*/
if(c=='c')
num1=0; /*将两个操作数复位0,符号标志为1*/
num2=0;
flag=1;
strcpy(str2,""); /*将str2清空*/
setfillstyle(SOLID_FILL,color+3); /*设置用淡绿色实体填充*/
bar(2*width+width/2,height/2,15*width/2,3*height/2); /*覆盖结果区*/
outtextxy(5*width,height,"0."); /*显示字符串*/
if(c=='Q')exit(0); /*如果选择了q回车,结束计算程序*/
putimage(x,y,rar,XOR_PUT); /*在退出之前消去光标箭头*/
return; /*返回*/
/*窗口函数*/
void mwindow( char *header )
int height;
cleardevice(); /* 清除图形屏幕 */
setcolor( MaxColors - 1 ); /* 设置当前颜色为白色*/
setviewport( 20, 20, MaxX/2, MaxY/2, 1 ); /* 设置视口大小 */
height = textheight( "H" ); /* 读取基本文本大小 */
settextstyle( DEFAULT_FONT, HORIZ_DIR, 1 );/*设置文本样式*/
settextjustify( CENTER_TEXT, TOP_TEXT );/*设置字符排列方式*/
outtextxy( MaxX/4, 2, header ); /*输出标题*/
setviewport( 20,20+height+4, MaxX/2+4, MaxY/2+20, 1 ); /*设置视口大小*/
drawboder(); /*画边框*/
void drawboder(void) /*画边框*/
struct viewporttype vp; /*定义视口类型变量*/
setcolor( MaxColors - 1 ); /*设置当前颜色为白色 */
setlinestyle( SOLID_LINE, 0, NORM_WIDTH );/*设置画线方式*/
getviewsettings( &vp );/*将当前视口信息装入vp所指的结构中*/
rectangle( 0, 0, vp.right-vp.left, vp.bottom-vp.top ); /*画矩形边框*/
/*设计鼠标图形函数*/
int arrow()
int size;
int raw[]=4,4,4,8,6,8,14,16,16,16,8,6,8,4,4,4; /*定义多边形坐标*/
setfillstyle(SOLID_FILL,2); /*设置填充模式*/
fillpoly(8,raw); /*画出一光标箭头*/
size=imagesize(4,4,16,16); /*测试图象大小*/
rar=malloc(size); /*分配内存区域*/
getimage(4,4,16,16,rar); /*存放光标箭头图象*/
putimage(4,4,rar,XOR_PUT); /*消去光标箭头图象*/
return 0;
/*按键函数*/
int specialkey(void)
int key;
while(bioskey(1)==0); /*等待键盘输入*/
key=bioskey(0); /*键盘输入*/
key=key&0xff? key&0xff:key>>8; /*只取特殊键的扫描值,其余为0*/
return(key); /*返回键值*/
参考技术B 我用MFC可以做出来 参考技术C 要求界面的话,有点难
要是只要算法 倒是可以做
关于c语言课程设计链表的两个问题。。(高分求助) 非常急。。。。!!。
(问题原题如下,知道任何一题都可回答)(回答的好一题加100分)谢谢。。。。。
链表(每一功能用一函数实现):
1.先建立两个有序的单链表,再将其合并成一个有序的单链表。。
2.先建立一若干个结点构成的单链表,统计其中数据域值为x的结点的个数,再对该单链表进行复制。。。。。
using namespace std;
struct NODE
int data;
NODE *next;
;
void dataAdd(NODE *(&list),int data) //在链表尾增加一个新的节点
NODE *newNode,*p;
newNode=new NODE;
newNode->data=data;
p=list;
if(!p) //如果list为空,头结点赋值为当前值
list=newNode;
list->next=NULL;
return ;
while(p->next)
p=p->next;
p->next=newNode;
newNode->next=NULL;
void inputData(NODE *(&list))
int data;
cin>>data;
while(!cin.fail())
dataAdd(list,data);
cin>>data;
cin.clear();
cin.sync();
int lastData(NODE *list)
NODE *p=list;
if(!p)
return -1;
while(p->next)
p=p->next;
return p->data;
void sortList(NODE *(&list))
NODE *p,*q;
p=list;
int temp;
while(p->next)
q=p->next;
while(q)
if(p->data>q->data)
temp=p->data;
p->data=q->data;
q->data=temp;
q=q->next;
p=p->next;
void combination(NODE *list1,NODE *list2,NODE *(&list3))
NODE *p=list1;
NODE *q=list2;
while(p && q)
if(p->data < q->data )
if(lastData(list3)!=p->data)
dataAdd(list3,p->data);
p=p->next;
else if(p->data > q->data)
if(lastData(list3)!=q->data)
dataAdd(list3,q->data);
q=q->next;
else if(p->data == q->data)
if(lastData(list3)!=p->data)
dataAdd(list3,p->data);
p=p->next;
q=q->next;
while(p)
if(lastData(list3)!=p->data)
dataAdd(list3,p->data);
p=p->next;
while(q)
if(lastData(list3)!=q->data)
dataAdd(list3,q->data);
q=q->next;
void showList(NODE *list) //显示链表中的数据
NODE *p;
p=list;
while(p)
cout<<p->data<<' ';
p=p->next;
cout<<endl;
int main()
NODE *list1=NULL,*list2=NULL;
cout<<"请输入链表1的数据,非数字字符为结束符!"<<endl;
inputData(list1);
sortList(list1); //list1排序
//showList(list1);
cout<<endl;
cout<<"请输入链表2的数据,非数字字符为结束符!"<<endl;
inputData(list2);
sortList(list2); //list2排序
NODE *list3=NULL;
cout<<"list1和list2的并集为:"<<endl;
combination(list1,list2,list3);
showList(list3);
cout<<endl;
return 0;
参考技术A //测试示例如下:************************
//请选择题目1或2:1
//输入链表a节点数目:4
//输入第1个节点的数据:3
//输入第2个节点的数据:6
//输入第3个节点的数据:2
//输入第4个节点的数据:6
//打印出所有编号: 2 3 6 6
//输入链表b节点数目:5
//输入第1个节点的数据:3
//输入第2个节点的数据:6
//输入第3个节点的数据:1
//输入第4个节点的数据:4
//输入第5个节点的数据:7
//打印出所有编号: 1 3 4 6 7
//合并链表a与b:打印出所有编号: 1 2 3 3 4 6 6 6 7
//请选择题目1或2:2
//输入链表c节点数目:7
//输入第1个节点的数据:4
//输入第2个节点的数据:7
//输入第3个节点的数据:3
//输入第4个节点的数据:7
//输入第5个节点的数据:2
//输入第6个节点的数据:1
//输入第7个节点的数据:7
//打印出所有编号: 1 2 3 4 7 7 7
//输入欲查找的节点:7
//该节点在链表c中的个数为:3
//输入欲查找的节点:6
//该节点在链表c中的个数为:0
//输入欲查找的节点:4
//该节点在链表c中的个数为:1
//输入欲查找的节点:9999
//该节点在链表c中的个数为:0
//复制链表c:打印出所有编号: 1 2 3 4 7 7 7
#include "stdafx.h"
#include <stdio.h>
#include <assert.h>
#define ElType int
typedef struct NumNode
ElType m_data;
struct NumNode *m_next;
NumNode;
NumNode *CreateList(NumNode *phead,const int n );
void PrintTest(NumNode *phead);
NumNode *GetNode(NumNode *next,const ElType &item);
void InsertFront(NumNode * &head, ElType &item);
void InsertOrder(NumNode * &head,ElType &item);
NumNode *MergeList(NumNode *head1,NumNode *head2);
int FindData(NumNode * &head,const ElType &item);
NumNode *CopyList(NumNode * &head);
void TestList1();
void TestList2();
void TestList1()
NumNode *pha, *phb;
pha = NULL;
phb = NULL;
int size_a,size_b;
printf("输入链表a节点数目:");
scanf("%d",&size_a);
pha = CreateList(pha,size_a);
PrintTest(pha);
printf("输入链表b节点数目:");
scanf("%d",&size_b);
phb = CreateList(phb,size_b);
PrintTest(phb);
printf("合并链表a与b:");
PrintTest(MergeList(pha,phb));
void TestList2()
NumNode *phc;
phc = NULL;
int size_c,item;
printf("输入链表c节点数目:");
scanf("%d",&size_c);
phc = CreateList(phc,size_c);
PrintTest(phc);
do
printf("输入欲查找的节点:");
scanf("%d",&item);
printf("该节点在链表c中的个数为:%d\n",FindData(phc,item));
while(9999 != item);
printf("复制链表c:");
PrintTest( CopyList(phc) );
NumNode *CopyList(NumNode * &head)
NumNode *copyHead, *curr;
assert(NULL !=head);
curr = head;
copyHead = NULL;
while(NULL != curr)
InsertOrder(copyHead,curr->m_data);
curr = curr->m_next;
return copyHead;
int FindData(NumNode * &head,const ElType &item)
NumNode *curr = head;
int num = 0;
while(NULL != curr)
if(item == curr->m_data)
num++;
curr = curr->m_next;
return num;
NumNode *MergeList(NumNode *head1,NumNode *head2)
NumNode *phc, *pha, *phb, *head;
pha = head1;
phb = head2;
if(pha->m_data < phb->m_data)
head = phc = pha;
pha = pha->m_next;
else
head = phc = phb;
phb = phb->m_next;
while(NULL != pha && NULL != phb)
if(pha->m_data < phb->m_data)
phc->m_next = pha;
phc = pha;
pha = pha->m_next;
else
phc->m_next = phb;
phc = phb;
phb = phb->m_next;
if(NULL != pha)
phc->m_next = pha;
else
phc->m_next = phb;
return head;
NumNode *CreateList(NumNode *phead,const int n )
int i;
ElType item;
for(i = 0; i<n; ++i)
printf("输入第%d个节点的数据:",i+1);
scanf("%d",&item);
InsertOrder(phead,item);
return phead;
void InsertOrder(NumNode * &head,ElType &item)
NumNode *prior, *curr, *newnode;
prior = NULL;
curr = head;
while(NULL != curr)
if(item < curr->m_data)
break;
else
prior = curr;
curr = curr->m_next;
if(NULL == prior)
InsertFront(head,item);
else
newnode = GetNode(NULL,item);
newnode->m_next = prior->m_next;
prior->m_next = newnode;
NumNode *GetNode(NumNode *next,const ElType &item)
NumNode *newnode = (NumNode *)malloc(sizeof(NumNode));
assert(NULL != newnode);
newnode->m_data = item;
newnode->m_next = next;
return newnode;
void InsertFront(NumNode * &head, ElType &item)
head = GetNode(head,item);
void PrintTest(NumNode *phead)
printf("打印出所有编号:"); //检测数据输入是否有误
NumNode *pTmp = phead;
while(pTmp != NULL)
printf("%4d",pTmp->m_data);
pTmp = pTmp->m_next;
printf("\n");
void main()
int i;
do
printf("请选择题目1或2:");
scanf("%d",&i);
switch(i)
case 1:
TestList1();
break;
case 2:
TestList2();
break;
default :
break;
while(-1 != i);
参考技术B 问题一
#include<stdio.h>
#include<stdlib.h>
typedef struct Lnode
int data;
struct Lnode *next;
Lnode,*Linklist;
void Greatlist(Linklist &L,int t);
void List_L(Linklist &ha,Linklist &hb);
void main()
int n,m;
struct Lnode *ha,*hb;
printf("输入a的结点个数:");
scanf("%d",&n);
printf("输入a的结点数据:\n");
Greatlist(ha,n);
printf("输入b的结点个数:");
scanf("%d",&m);
printf("输入b的结点数据:\n");
Greatlist(hb,m);
List_L(ha,hb);
printf("输出合并后的链表:\n");
while(ha!=NULL)
printf("%d ",ha->data);ha=ha->next;
void Greatlist(Linklist &L,int t)
int i;
struct Lnode *p,*q;
L=(Linklist)malloc(sizeof(Lnode));
scanf("%d",&L->data);////先建一个结点
L->next=NULL;
q=L;
for(i=1;i<t;i++)
p=(Linklist)malloc(sizeof(Lnode));/////生成新结点
scanf("%d",&p->data);
p->next=NULL;
q->next=p;
q=q->next;
void List_L(Linklist &ha,Linklist &hb)
struct Lnode *pa,*pb,*pc,*la;
pa=ha;pb=hb;la=ha;
if((pa->data)>(pb->data))
pc=(Linklist)malloc(sizeof(Lnode));
pc->data=pb->data;
pc->next=la;
ha=pc;
pb=pb->next;
while(pa&&pb)
if((pa->data)<(pb->data))
la=pa;pa=pa->next;
else if((pa->data)>(pb->data))
pc=(Linklist)malloc(sizeof(Lnode));
pc->data=pb->data;
pc->next=la->next;
la->next=pc;
pb=pb->next;
else pb=pb->next;
if(pb)
la->next=pa?pa:pb;///插入剩余段
以上是关于求助用C语言程序设计一个计算器的主要内容,如果未能解决你的问题,请参考以下文章