码迷,mamicode.com
首页 > 其他好文 > 详细

uva 465 Overflow

时间:2015-07-17 11:48:10      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<cctype>
#include<cstdlib>
#include<cstring>
#include<cstdio>
using namespace std;

const int MIN = -1u >> 1;

int main(){
    double a,b;
    char s1[1000],s2[1000];
    char c;
    while((scanf("%s %c %s",s1,&c,s2))!=EOF){
        printf("%s %c %s\n",s1,c,s2);
        a = atof(s1);
        b = atof(s2);
        if(a > MIN) printf("first number too big\n");
        if(b > MIN) printf("second number too big\n");
        if(c==+&&a+b>MIN)printf("result too big\n");
        if(c==*&&a*b>MIN)printf("result too big\n");
    }

    return 0;
}

 

uva 465 Overflow

标签:

原文地址:http://www.cnblogs.com/yong-hua/p/4653597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!