開発環境
- OS X Lion - Apple(OS)
- Emacs、BBEdit - Bare Bones Software, Inc. (Text Editor)
- プログラミング言語: C
- Clang (コンパイラ)
プログラミング言語C 第2版 ANSI規格準拠 (B.W. カーニハン D.M. リッチー (著)、 石田 晴久 (翻訳)、共立出版)の第7章(入出力)、7.4(書式付き入力)、演習7-5を解いてみる。
その他参考書籍
- プログラミング言語Cアンサー・ブック 第2版 (クロビス・L.トンド、スコット・E.ギンペル(著)、矢吹 道郎(翻訳))
演習 7-5.
コード
sample.c
#include <stdio.h>
#include <stdlib.h>
#define MAXOP 100
#define NUMBER '0'
int getop(char []);
void push(double);
double pop(void);
int main(int argc, char *argv[])
{
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 '\n':
printf("\t%.8g\n", pop());
break;
default:
printf("error: unknown command %s\n", s);
break;
}
}
return 0;
}
#define MAXVAL 100
int sp = 0;
double val[MAXVAL];
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;
}
}
int getop(char s[])
{
int i, c, rc;
static char lastch = ' ';
c = lastch;
lastch = ' ';
while ((s[0] = c) == ' ' || c == '\t') {
if (scanf("%c", &c) == EOF) {
c = EOF;
}
}
s[1] = '\n';
if (!isdigit(c) && c != '.') {
return c;
}
i = 0;
if (isdigit(c)) {
do {
rc = scanf("%c", &c);
if (!isdigit(s[++i] = c)) {
break;
}
} while (rc != EOF);
}
if (c == '.') {
do {
rc = scanf("%c", &c);
if (!isdigit(s[++i] =c)) {
break;
}
} while (rc != EOF);
}
s[i] = '\0';
if (c != EOF) {
lastch = c;
}
return NUMBER;
}
入出力結果(Terminal)
$ ./a.out 1 2 - 4 5 + * -9 1 2-4 5+* -9 $
0 コメント:
コメントを投稿