C程序设计语言 4-6

练习4-6 给计算机程序增加处理变量的命令(提供26个具有单个英文字母变量名的变量很容易)。增加一个变量存放最近打印的值。

主函数:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include "calc.h"

#define MAXLEN 100
#define MAXOP 100

int getop(char []);
void push(double);
double pop(void);
void math_op(char s[]);
void mod(void);

int main()
{
	int type;
	double op1, op2;
	char s[MAXOP];
	double val[26];
	double recent_val;
	
	while ((type = getop(s)) != EOF)
	{
		switch (type) {
			case NUMBER:
				push(atof(s));	//printf("push number\n");
				break;
			case '+':
				push(pop() + pop());
				break;
			case '*':
				push(pop() * pop());
				break;
			case '-':
				op2 = pop();
				push(pop() - op2);
				break;
			case '/':
				op2 = pop();
				if (op2 != 0.0)
					push(pop() / op2);
				else
					printf("error:zero divisior\n");
				break;
			case '%':
				mod();
				break;
			case MATHOP:		//判断是否是math.h中函数
				math_op(s);
				break;
			case VARIABLE:
				val[s[0] - 'a'] = pop();
				push(val[s[0] - 'a']);
				break;
			case '\n':
				recent_val = pop();
				printf("result: %.8g\n", recent_val);
				break;
			default:
				printf("error: unknown command %s\n", s);
				break;
		}
	}
	
	return 0;
}

void mod(void)
{
	double op1, op2;
	op2 = pop();
	if ((op1 = pop()) <= 0.0)
	{
		printf("error:mod num lower than zero\n");
		return;
	}
	else
	{
		printf("%g %g\n", op1, op2);
		printf("%.1lf %.1lf %g %g \n",floor(op1 + 0.5), floor(op2 + 0.5), op1, op2);
		if (floor(op1 + 0.5) != op1 || floor(op2 + 0.5) != op2)
		{
			printf("error: not integer\n");
			return;
		}
		if (op2 < 0.0)
		{
			while (op2 < 0.0)
				op2 += op1;
			push((int)op1 % (int)op2);
			return;
		}
		else
			push((int)op1 %(int)op2);
		return;
	}

}

void math_op(char s[])
{
	if (!strcmp(s, "sin"))
	{
		push(sin(pop()));
		return;
	}
	else if (!strcmp(s, "cos"))
	{
		push(cos(pop()));
		return;
	}
	else if (!strcmp(s, "tan"))
	{
		push(tan(pop()));
		return;
	}
	else if (!strcmp(s, "exp"))
	{
		push(exp(pop()));
		return;
	}
	else if (!strcmp(s, "pow"))
	{
		push(pow(pop(),pop()));
		return;
	}
	else
	{
		printf("error: unknown command %s\n", s);
		return;
	}
}

 getop函数增加处理字母的功能

#include <stdio.h>
#include <ctype.h>
#include "calc.h"

int getch(void);
void ungetch(int);

int getop(char s[])
{
	int i, c;
	
	while ((s[0] = c = getch()) == ' ' || c == '\t')
		;
	s[1] = '\0';
	if (!isdigit(c) && !islower(c) && c != '.')
		return c;
	
	i = 0;
	if (islower(c))
	{
		while (islower(s[++i] = c = getch()))
			;
		s[i] = '\0';
		if (i == 1)
			return VARIABLE;
		else
			return MATHOP;
	}
	
	if (isdigit(c))
		while (isdigit(s[++i] = c = getch()))
			;
	if (c == '.')
		while (isdigit(s[++i] = c = getch()))
			;
	s[i] = '\0';
	if (c != EOF)
		ungetch(c);
	return NUMBER;
}

 头文件calc.h

#define NUMBER '0'
#define MATHOP '1'
#define VARIABLE '2'

void push(double);
double pop(void);
int getop(char []);
int getch(void);
void ungetch(int);

其他函数没有放,可以看之前我的博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值