題目連結: https://zerojudge.tw/ShowProblem?problemid=d356# 解題思路就依照題目的意思累加吧(記得用 double 儲存計算結果)# 程式碼#include <iostream>using namespace std;int main(){ double n=1,k,a=1; cin>>k; while(k>=n) { a++; n += 1/a; } cout<<a<<endl; return 0;} Zerojudge 重複結構