題目連結: https://zerojudge.tw/ShowProblem?problemid=d461
# 解題思路
若有 2 個隊伍就需要比 1 場
若有 3 個隊伍就需要比 1+1 場
若有 4 個隊伍就需要比 2+1 場
若有 5 個隊伍就需要比 2+1+1 場
寫多了就會發現,就會剛好的等於 n-1
# 程式碼
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int x; | |
while(cin>>x) | |
cout<<x-1; | |
} |