#44961: 救命 輸出到line 9錯了 有大神能幫忙嗎???


angus7315197@gmail.com (小章魚)

學校 : 不指定學校
編號 : 288474
來源 : [36.239.139.23]
最後登入時間 :
2024-10-21 23:48:15
d097. 10038 - Jolly Jumpers -- UVa10038 | From: [223.139.227.140] | 發表日期 : 2024-12-29 23:25

#include <iostream>
using namespace std;
 
int main(){
    int n, input, sum;
    while(cin >> n)
    {
        int save[n];
        for(int a = 0; a < n; a++)
        {
            cin >> input;
            save[a] = input;
        }
        for(int b = 0; b < n - 1; b++)
        {
            if( abs(save[b] - save[b+1]) <= n - 1 && abs(save[b] - save[b+1]) >= 1)
            {
                 sum += 1; 
            }
        }
        if(sum == n - 1)
        {
            cout << "Jolly";
        }
        else
        {
            cout << "Not jolly";
        }
        cout << endl;
        sum = 0;
}
    return 0;
}
 
ZeroJudge Forum