題目連結: https://zerojudge.tw/ShowProblem?problemid=d498# 解題思路用 for 迴圈跑 n 次的我不說髒話即可# 程式碼#include <iostream>using namespace std;int main(){ int n; cin>>n; for(int i =0; i<n;i++) cout<<"I don't say swear words!"<<endl; return 0;} Zerojudge 重複結構