題目連結: https://zerojudge.tw/ShowProblem?problemid=b681
# 解題思路
向北 (L>0) 的公式為 2L-1,向南 (L<0) 的話為 -2L
# 程式碼
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int L ; | |
while(cin>>L) | |
{ | |
if(L>0) | |
cout<<2*L-1; | |
else | |
cout<<-2*L; | |
cout<<endl; | |
} | |
} |