problem description:
真的是簡單題哈 —— 給定兩個絕對值不超過100的整數a和b,要求你按照「a/b=商」的格式輸出結果。
input:
輸入在第一行給出兩個整數a和b(-100 <= a, b, <= 100),數字間以空格分隔。
output:
在一行中輸出結果:如果分母是正數,則輸出「a/b=商」;如果分母是負數,則要用括號把分母括起來輸出;如果分母為零,則輸出的商應為「error」。輸出的商應保留小數點後2位。
sample input:
-1 2
sample output:
-1/2=-0.50
my daima:
#include
#include//c++中浮點數保留小數點的有檔案要有此檔案
using namespace std;
int main()
C 中保留小數點後N位的方法
看到網上有些朋友用的方法,就記錄如下。不過我平常用的是math.round x,n x是資料,n是保留小數點後n位,侷限性有,但是方便且 支援四捨五入。1.只要求保留n位不四捨五入 float f 0.55555f int i int f 100 f float i 1.0 100 2.保留n位,並...
C Double toString保留小數點方法
有時候double型資料需要tostring 但又想保留小數,當值為整數,比如3.00時tostring後會變為 3 具體說明見下 1 stringstr0 i.tostring f 2 stringstr1 i.tostring f1 3 stringstr2 i.tostring f2 4 st...
c 保留小數點後位數的方法
c 保留小數點後位數的方法 double dvalue 95.12345 int ivalue 10000 string strvalue 95.12345 string result result convert.todouble dvalue tostring 0.00 保留小數點後兩位,結果為...