標題:
505 公式計算
[打印本頁]
作者:
李知易
時間:
2024-11-7 17:14
標題:
505 公式計算
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入a、b、c、d、e及f六個浮點數變數值,計算並輸出下列公式值(四捨五入至小數點後第二位)。
公式:
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
六個浮點數
輸出說明
公式計算後的結果(四捨五入至小數點後第二位)
範例輸入
-1.25
3.5
2
3
10
100
範例輸出
31.05
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡宇庭
時間:
5 天前 15:18
#include<bits/stdc++.h>
using namespace std;
double a,b,c,d,e,f,res;
int main()
{
cin>>a>>b>>c>>d>>e>>f;
res=abs(a)*floor(b)+pow(c,d)*sqrt(e)+log10(f);
printf("%.2f",res);
return 0;
}
複製代碼
作者:
劉秉昕
時間:
5 天前 15:18
#include<bits/stdc++.h>
using namespace std;
double a, b, c, d, e, f, res;
int main()
{
cin>>a>>b>>c>>d>>e>>f;
res=abs(a)*floor(b)+pow(c, d)*sqrt(e)+log10(f);
printf("%.2f", res);
return 0;
}
複製代碼
作者:
張淯祺
時間:
5 天前 15:19
#include<bits/stdc++.h>
using namespace std;
double a,b,c,d,e,f,res;
int main()
{
cin>>a>>b>>c>>d>>e>>f;
res=abs(a)*floor(b)+pow(c,d)*sqrt(e)+log10(f);
printf("%.2f",res);
return 0;
}
複製代碼
作者:
朱奕祈
時間:
5 天前 15:20
#include<bits/stdc++.h>
using namespace std;
double a,b,c,d,e,f,res;
int main()
{
cin>>a>>b>>c>>d>>e>>f;
res=abs(a)*floor(b)+pow(c,d)*sqrt(e)+log10(f);
printf("%.2f",res);
return 0;
}
複製代碼
作者:
陳奕睿
時間:
5 天前 15:22
#include<bits/stdc++.h>
using namespace std;
double a, b, c, d, e, f, res;
int main()
{
cin>>a>>b>>c>>d>>e>>f;
res=abs(a)*floor(b)+pow(c, d)*sqrt(e)+log10(f);
printf("%.2f", res);
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2