#43649: c++解法和思路


yp11351280@yphs.tp.edu.tw (710-43)

學校 : 臺北市私立延平高級中學
編號 : 276272
來源 : [203.72.178.1]
最後登入時間 :
2024-11-07 17:46:46
a861. 1. Secure the Perimeter -- HP CodeWars2010 | From: [203.72.178.1] | 發表日期 : 2024-10-22 17:48

總長=(長+寬)*2

#include<iostream>
using namespace std;
int main(){
    int a,b, c;
    while(cin>>a>>b){
        cout<<(a+b)*2<<endl;
    }
}

 
ZeroJudge Forum