iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 9
1
自我挑戰組

一日一CPE系列 第 9

[Day9]11942: Lumberjack Sequencing

  • 分享至 

  • xImage
  •  

考題日期:2016/05/24
題號:11942
星等:1
語言:C++


題目:
https://ithelp.ithome.com.tw/upload/images/20190925/20120937oIRH8WsOM2.png


題意:
判斷伐木工是否以由長到短,或以由短到長的順序排成一列。不會有人的鬍子一樣長。


程式:

#include <iostream>
#include <string>

using namespace std;

int main()
{
    int test;
    int p[10];
    cin>>test;
    cout<<"Lumberjacks:"<<endl;
   for(int i = 0 ; i < test ; i++)
   {
        bool key = true;
        for(int j = 0 ; j < 10 ; j++)
        {
            cin>>p[j];
        }
        if(p[1]>p[2])
        {
            for(int j = 0 ; j < 9 ; j++)
            {
                if(p[j]<p[j+1])
                    key = false;
            }
        }
         if(p[1]<p[2])
        {
            for(int j = 0 ; j < 9 ; j++)
            {
                if(p[j]>p[j+1])
                    key = false;
            }
        }
        if(key)
            cout<<"Ordered"<<endl;
        else
            cout<<"Unordered"<<endl;
        
   }
   return 0;
}

測資:
https://ithelp.ithome.com.tw/upload/images/20190925/20120937gOrRweUJOY.png


上一篇
[Day8]10106: Product
下一篇
[Day10]612: DNA Sorting
系列文
一日一CPE30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言