標題:
104 基本認識-浮點數總和
[打印本頁]
作者:
鄭繼威
時間:
2023-5-27 15:26
標題:
104 基本認識-浮點數總和
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者
輸入兩個
浮點數
,
計算兩浮點數之
總和
(四捨五入至小數點後第二位)
。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
兩個浮點數
輸出說明
計算總和(四捨五入至小數點後第二位)
範例輸入
2.222
3.666
範例輸出
total=5.89
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳宥霖
時間:
2023-5-27 15:30
#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
printf("total=%.2f",(a+b));
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2023-6-2 23:54
#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
printf("total=%.2f",(a+b));
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2023-6-3 14:04
#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
cout<<"total="<<a+b<<endl;
printf("total=%.2f",a+b);
return 0;
}
複製代碼
作者:
李函庭
時間:
2023-6-3 14:05
#include<bits/stdc++.h>
using namespace std;
int main()
{
float a,b;
cin>>a>>b;
printf("total=%.2f",a+b);
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-6-3 14:07
#include<bits/stdc++.h>
using namespace std;
main(){
double a,b;
cin>>a>>b;
printf("total=%.2f",a+b);
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-6-3 14:07
5
作者:
郭博鈞
時間:
2023-6-3 14:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
printf("total=%.2f",(a+b));
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2023-6-3 14:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
printf("total=%.2f",a+b);
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2023-6-3 19:38
#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
printf("total=%.2f",(a+b));
return 0;
}
複製代碼
作者:
宜儒
時間:
2023-6-9 22:26
#include<bits/stdc++.h>
#include<cstdlib>
using namespace std;
int main()
{
double a,b;
cin>>a>>b;
printf("total=%.2f",a+b);
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-11-4 18:10
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.sync_with_stdio(0);
float a=0,b=0;
cin>>a;
cin>>b;
float c;
c=a+b;
printf("total=%.2f",c);
return 0;
}
複製代碼
作者:
李宗儒
時間:
2024-1-24 18:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,d;
cin>>a;
cin>>b;
d=a+b;
printf("total=%.2f",d);
}
複製代碼
作者:
陳駿彥
時間:
2024-2-2 16:34
#include<bits/stdc++.h>
using namespace std;
int main()
{
float a,b;
cin>>a>>b;
printf("total=%.2f",(a+b));
return 0;
}
複製代碼
作者:
黃暐鈞
時間:
2024-2-3 14:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b;
cin>>a>>b;
printf("total=%.2f",a+b);
return 0;
}
複製代碼
作者:
蔡秉勛
時間:
2024-7-23 18:51
1
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2