首页 > 代码库 > UVA_ Overflow
UVA_ Overflow
Description
Overflow |
Write a program that reads an expression consisting of two non-negative integer and an operator. Determine if either integer or the result of the expression is too large to be represented as a ``normal‘‘ signed integer (type integer if you are working Pascal, type int if you are working in C).
Input
An unspecified number of lines. Each line will contain an integer, one of the two operators + or *, and another integer.
Output
For each line of input, print the input followed by 0-3 lines containing as many of these three messages as are appropriate: ``first number too big‘‘, ``second number too big‘‘, ``result too big‘‘.
Sample Input
300 + 39999999999999999999999 + 11
Sample Output
300 + 39999999999999999999999 + 11first number too bigresult too big
这道题考的是 atof 的用法;
atof 把字符串转换成浮点数;
代码:
1 #include <iostream> 2 #include <cstdio> 3 #include <cstdlib> 4 #include <cstring> 5 #define UNIT 10 6 #define MAX 2147483647 7 8 using namespace std; 9 10 char a[1000],b[1000],ch;11 int main()12 {13 //freopen("ACM.txt","r",stdin);14 while(scanf("%s %c %s", a, &ch, b)!=EOF)15 {16 printf("%s %c %s\n",a,ch,b);17 double x1,x2;18 x1=atof(a);19 x2=atof(b);20 if(x1>MAX)21 cout<<"first number too big"<<endl;22 if(x2>MAX)23 cout<<"second number too big"<<endl;24 if(ch==‘+‘&&x1+x2>MAX||ch==‘*‘&&x1*x2>MAX)25 cout<<"result too big"<<endl;26 27 }28 return 0;29 }
UVA_ Overflow
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。