题目链接:https://pintia.cn/problem-sets/994805046380707840/problems/994805094485180416
真的是简单题哈 —— 给定两个绝对值不超过100的整数A和B,要求你按照“A/B=商”的格式输出结果。
输入在第一行给出两个整数A和B(−100≤A,B≤100),数字间以空格分隔。
在一行中输出结果:如果分母是正数,则输出“A/B=商”;如果分母是负数,则要用括号把分母括起来输出;如果分母为零,则输出的商应为Error
。输出的商应保留小数点后2位。
-1 2
-1/2=-0.50
1 -3
1/(-3)=-0.33
5 0
5/0=Error
解题思路:
如果b小于0就左右加上括号,如果b=0就要输出计算结果为Error,其余情况就输出a/b的保留两位小数的结果
AC代码:
#include<iostream> #include<stdio.h> #include<stdlib.h> #include<math.h> #include<string.h> #include<algorithm> #include<map> #include<vector> #include<queue> using namespace std; #define ll long long int main() { #ifdef ONLINE_JUDGE #else freopen("1.txt", "r", stdin); #endif /* your code */ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int a, b; cin >> a >> b; cout << a << "/"; if (b >= 0) { cout << b << "="; } else { cout << "(" << b << ")="; } if (b == 0) { cout << "Error"; } else { printf("%.2f", a * 1.0 / b); } return 0; }
原文:https://www.cnblogs.com/lino/p/10452496.html