# Foreword> # 序 This book brings you face-to-face with the most fundamental idea in computer programming: > 关于计算机的基础理念,这本书会给您带来一个直观的理解: **The interpreter for a computer language is just another program.** > **计算机语言的处理程序只是另一个程序.** It sounds obviou…
//简单计算器 #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include <math.h> #define MAXOP 100 //max size of operand or operator #define NUMBER '0' //sign of a number was found #define NAME 'n' //si…