開発環境
- 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(書式付き入力 - scanf)、演習7-5を解いてみる。
その他参考書籍
- プログラミング言語Cアンサー・ブック 第2版 (クロビス・L.トンド、スコット・E.ギンペル(著)、矢吹 道郎(翻訳))
演習 7-5.
コード
sample.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <ctype.h> #define MAXOP 100 #define NUMBER '0' #define MAXVAL 100 int getop(char []); void push(double); double pop(void); int sp = 0; double val[MAXVAL]; char tmp[] = " "; 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(); if (op2 != 0.0) push(fmod(pop(), op2)); else printf("error: zero divisor(fmod)\n"); break; case '\n': printf("\t%.8g\n", pop()); break; default: printf("error: unkown command %s\n", s); break; } } return 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; } } int getop(char s[]) { int i, c; c = tmp[0]; while ((s[0] = c) == ' ' || c == '\t') if (scanf("%c", &c) == EOF) c = EOF; s[1] = '\0'; if (!isdigit(c) && c != '.' && c != '-') return c; i = 0; if (c == '-') { scanf("%c", &c); if (isdigit(c) || c == '.') { s[++i] = c; } else { if (c != EOF) return '-'; } } if (isdigit(c)) do { scanf("%c", &c); } while (isdigit(s[++i] = c)); if (c == '.') do { scanf("%c", &c); } while (isdigit(s[++i] = c)); s[i] = '\0'; if (c != EOF) tmp[0] = c; return NUMBER; }
入出力結果(Terminal)
$ ./a.out 1 2 - 4 5 + * -9 1.2 3.4 + 4.6 $
0 コメント:
コメントを投稿