C/C++の宿題を片付けます 91代目at TECH
C/C++の宿題を片付けます 91代目 - 暇つぶし2ch395:デフォルトの名無しさん
07/06/28 01:00:55
>>392 こんなのはどうかな。
#include <stdio.h>
#include <ctype.h>
int main(void)
{
    int c, max = -1, m, n, nc = 0, f, sign = 1;
    while ((c = getchar()) != EOF) {
        if (isdigit(c)) {
            n = f = 0;
            do {
                if ((m = n * 10 + c - '0') < n) f = 1;
                n = m;
            } while ((c = getchar()) != EOF && isdigit(c));
            ungetc(c, stdin);
            if (f) puts("桁あふれしますた");
            else {
                n *= sign;
                printf("%d\n", n);
                if (n > max) max = n;
                if (++nc == 10) break;
            }
        }
        else if (c == '-') { sign = -1; }
        else sign = 1;
    }
    if (max != -1) printf("最大値: %d\n", max);
    return 0;
}


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch