標題:
505 公式計算
[打印本頁]
作者:
may
時間:
6 天前 23:13
標題:
505 公式計算
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入a、b、c、d、e及f六個浮點數變數值,計算並輸出下列公式值(四捨五入至小數點後第二位)。
公式:
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
六個浮點數
輸出說明
公式計算後的結果(四捨五入至小數點後第二位)
範例輸入
-1.25
3.5
2
3
10
100
範例輸出
31.05
本帖隱藏的內容需要回復才可以瀏覽
作者:
林宜靜
時間:
4 天前 11:43
#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;
}
複製代碼
作者:
廖和風
時間:
4 天前 11:43
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,d,e,f;
cin>>a>>b>>c>>d>>e>>f;
printf("%.2f",abs(a)*floor(b)+pow(c,d)*sqrt(e)+log10(f));
return 0;
}
複製代碼
作者:
林弈呈
時間:
4 天前 11:43
#include<bits/stdc++.h>
using namespace std;
int main()
{
double a, b, c, d, e, f, res;
cin>>a>>b>>c>>d>>e>>f;
res=abs(a)*floor(b)+ pow(c, a)*sqrt(e)+log10(f);
printf("%.2f", res);
return 0;
}
複製代碼
作者:
邱思博
時間:
4 天前 11:43
#include<bits/stdc++.h>
using namespace std;
int main()
{
float a,b,c,d,e,f,res;
cin>>a>>b>>c>>d>>e>>f;
cout<<fixed<<setprecision(2)<<abs(a)*floor(b)+pow(c,d)*sqrt(e)+log10(f);
return 0;
}
複製代碼
作者:
黃彥綺
時間:
4 天前 11:43
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2