2013年9月1日日曜日

開発環境

プログラミング言語C 第2版 ANSI規格準拠 (B.W. カーニハン D.M. リッチー (著)、 石田 晴久 (翻訳)、共立出版)の第7章(入出力)、7.4(書式付き入力)、演習7-5を解いてみる。

その他参考書籍

演習 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 コメント:

コメントを投稿