C //练习 4-5 给计算器程序增加访问sin、exp与pow等库函数的操作。有关这些库函数的详细信息,参见附录B.4节中的头文件<math.h>。

C程序设计语言 (第二版) 练习 4-5

练习 4-5 给计算器程序增加访问sin、exp与pow等库函数的操作。有关这些库函数的详细信息,参见附录B.4节中的头文件<math.h>。

注意:代码在win32控制台运行,在不同的IDE环境下,有部分可能需要变更。
IDE工具:Visual Studio 2010
代码块:
c 复制代码
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#include <string.h>

#define MAXOP 100
#define NUMBER '0'
#define MAXVAL 100
#define BUFSIZE 100

int sp = 0;
double val[MAXVAL];

char buf[BUFSIZE];
int bufp = 0;

void push(double f){
	if(sp < MAXVAL){
		val[sp++] = f;
	}
	else{
		printf("Error! Stack Full, can't push %g\n", f);
	}
}

double pop(void){
	if(sp > 0){
		return val[--sp];
	}
	else{
		printf("Error! Stack Empty!\n");
		return 0.0;
	}
}

void printTop(void){
	if(sp > 0){
		printf("Top: %g\n", val[sp-1]);
	}
	else{
		printf("Error! Stack Empty!\n");
	}
}

void topCopy(void){
	if(sp > 0 || sp < MAXVAL){
		val[sp++] = val[sp-1];
	}
	else if(sp <= 0){
		printf("Error! Stack Empty!\n");
	}
	else{
		printf("Error! Stack Full!\n");
	}
}

void swapTop(void){
	double temp;
	if(sp >= 2){
		temp = val[sp-1];
		val[sp-1] = val[sp-2];
		val[sp-2] = temp;
	}
	else{
		printf("Can't Swap Top Number!\n");
	}
}

void emptyStack(void){
	for(int i = sp - 1; i >= 0; i--){
		val[i] = 0;
	}
	sp = 0;
}

int getch(void){
	return (bufp > 0) ? buf[--bufp] : getchar();
}

void ungetch(int c){
	if(bufp >= BUFSIZE){
		printf("Ungetch! Too many characters!\n");
	}
	else{
		buf[bufp++] = c;
	}
}

int getop(char s[]){
	int i, c;

	while((s[0] = c = getch()) == ' ' || c == '\t')
		;
	s[1] = '\0';

	if(c == 's'){
		int next1 = getch();
		int next2 = getch();
		if(next1 == 'i' && next2 == 'n'){
			return c;
		}
	}

	if(c == 'e'){
		int next1 = getch();
		int next2 = getch();
		if(next1 == 'x' && next2 == 'p'){
			return c;
		}
	}

	if(c == 'p'){
		int next1 = getch();
		int next2 = getch();
		if(next1 == 'o' && next2 == 'w'){
			return c;
		}
	}
	
	if(c == '-'){
		int next = getch();
		if(!isdigit(next) && next != '.'){
			ungetch(next);
			return c;
		}
		s[1] = c = next;
		i = 1;
	}
	else{
		i = 0;
		if(!isdigit(c) && c != '.'){
			return c;
		}
	}

	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;
}

int main(){
	int type;
	double op2;
	char s[MAXOP];

	while((type = getop(s)) != EOF){
		switch(type){
		case NUMBER:
			push(atof(s));
			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 Divisor!\n");
			}
			break;
		case '%':
			op2 = pop();
			push((int)pop() % (int)op2);
			break;
		case 's':
			op2 = pop();
			push(sin(op2));
			break;
		case 'e':
			op2 = pop();
			push(exp(op2));
			break;
		case 'p':
			op2 = pop();
			push(pow(pop(), op2));
			break;
		case '\n':
			printf("\t%.8g\n", pop());
			break;
		default:
			printf("Error! Unknown Command %s\n", s);
			break;
		}
	}

	system("pause");
	return 0;
}
相关推荐
不知天地为何吴女士1 小时前
Day32| 509. 斐波那契数、70. 爬楼梯、746. 使用最小花费爬楼梯
算法
小坏坏的大世界1 小时前
C++ STL常用容器总结(vector, deque, list, map, set)
c++·算法
wjs20242 小时前
状态模式(State Pattern)
开发语言
我命由我123452 小时前
Kotlin 数据容器 - List(List 概述、创建 List、List 核心特性、List 元素访问、List 遍历)
java·开发语言·jvm·windows·java-ee·kotlin·list
liulilittle2 小时前
C++ TAP(基于任务的异步编程模式)
服务器·开发语言·网络·c++·分布式·任务·tap
励志要当大牛的小白菜4 小时前
ART配对软件使用
开发语言·c++·qt·算法
qq_513970444 小时前
力扣 hot100 Day56
算法·leetcode
PAK向日葵5 小时前
【算法导论】如何攻克一道Hard难度的LeetCode题?以「寻找两个正序数组的中位数」为例
c++·算法·面试
爱装代码的小瓶子6 小时前
数据结构之队列(C语言)
c语言·开发语言·数据结构
爱喝矿泉水的猛男7 小时前
非定长滑动窗口(持续更新)
算法·leetcode·职场和发展