題目連結: https://zerojudge.tw/ShowProblem?problemid=a861# 解題思路求周長,就兩邊相加乘 2 阿 (明明很簡單 QQ,考試時竟然會錯)# 程式碼#include <iostream>using namespace std;int main(){ int a ,b; while(cin>>a >>b) { cout<<(a+b)*2<<endl; }} Zerojudge 運算子