題目
代碼
<code>#include<iostream>#include<iomanip>using namespace std;int main(){double a,b,res;int n;cin>>a>>b;n = a/b;res = a - n * b;cout<<fixed>/<iomanip>/<iostream>/<code>
思路
- 輸入a,b;
- 雙精度浮點數沒有取餘運算符,因此可以減去商*除數;
- 餘數= a - 商*b;
- 輸出餘數
閱讀更多 陽光小栗子 的文章
2020-02-26 17:09:42 陽光小栗子
題目
代碼
<code>#include<iostream>#include<iomanip>using namespace std;int main(){double a,b,res;int n;cin>>a>>b;n = a/b;res = a - n * b;cout<<fixed>/<iomanip>/<iostream>/<code>
思路
閱讀更多 陽光小栗子 的文章