#32162: 幫別人改的


gpks556@gmail.com (陳怡然)

學校 : 不指定學校
編號 : 196352
來源 : [61.64.24.59]
最後登入時間 :
2022-09-17 16:42:23
a248. 新手訓練 ~ 陣列應用 -- 新手訓練系列 ~ 2 | From: [61.64.24.59] | 發表日期 : 2022-09-17 16:45

#include <iostream>
#include <string>
using namespace std;

int main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int a, b, n;
    while (cin >> a >> b >> n) {
        string str;
        str.reserve(n + 1);
        cout << a / b << '.';
        
        int rem = a % b;
        for (int i = 0; i < n; i++) {
            rem *= 10;
            str.push_back('0' + rem / b);
            rem %= b;
        }
        str.push_back('\n');
        cout << str;
    }
    
    return 0;
}

 
ZeroJudge Forum