合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        COMP9021代做、代寫python設(shè)計程序

        時間:2024-07-20  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



        COMP**21 Principles of Programming 
        Term 2, 2024 
        Coding Quiz 5 
        Worth 4 marks and due Week 8 Thursday @ 9pm 
         
        Description 
        You are provided with a stub in which you need to insert your code where indicated without doing any 
        changes to the existing code to complete the task. Although it is not needed for this quiz, you may import 
        any extra module that is already installed in Ed if you wish. 
        The program randomly generates a grid with 0s and 1s, whose dimension is controlled by user input, as 
        well as the density of 1s in the grid, and finds out for a given step_number ≥ 1 and a given step_size ≥ 2, 
        the number of stairs of step_number many steps, with all steps of size step_size. 
        A stair of 1 step of size 2 is of the form: 
        1 1 
         1 1 
        A stair of 2 steps of size 2 is of the form 
        1 1 
         1 1 
         1 1 
        A stair of 1 step of size 3 is of the form 
        1 1 1 
         1 
         1 1 1 
        A stair of 2 steps of size 3 is of the form 
        1 1 1 
         1 
         1 1 1 
         1 
         1 1 1 
         2 
         
         
        The output lists the number of stairs from smallest step sizes to largest step sizes, and for a given step size, 
        from stairs with the smallest number of steps to stairs with the largest number of stairs. 
        Your task is to implement the function called stairs_in_grid(). 
        You may possibly define other functions. 
        The provided stub and the outputs of the sample test cases explain the task to be performed. 
         
        Marking 
         stairs_in_grid() 4 marks 
         ------------------------------------ 
         Total 4 marks 
         
         
        Due Date and Submission 
        Quiz 5 is due Week 8 Thursday 18 July 2024 @ 9.00pm (Sydney time). 
        Note that late submission with 5% penalty per day is allowed up to 3 days from the due date, that is, any 
        late submission after Week 8 Sunday 21 July 2024 @ 9pm will be discarded. 
        Make sure not to change the filename quiz_5.py while submitting by clicking on [Mark] button in Ed. 
        It is your responsibility to check that your submission did go through properly using Submissions link in Ed 
        otherwise your mark will be zero for Quiz 5. 
         
         3 
         
         
        Test Cases 
         
        $ python quiz_5.py 
        Enter three positive integers: 0 1 2 
        Here is the grid that has been generated: 
         1 1 
         0 1 
         
         
        $ python quiz_5.py 
        Enter three positive integers: 0 1 3 
        Here is the grid that has been generated: 
         1 1 0 
         1 1 1 
         1 1 1 
         
        For steps of size 2, we have: 
         2 stairs with 1 step 
         
         
        $ python quiz_5.py 
        Enter three positive integers: 0 3 9 
        Here is the grid that has been generated: 
         1 1 0 1 1 1 1 1 1 
         1 1 1 1 0 1 1 1 0 
         0 1 1 0 1 1 1 1 1 
         1 1 0 0 0 1 0 1 1 
         1 1 0 1 1 1 1 1 0 
         0 1 1 0 1 1 0 1 1 
         1 1 0 1 1 1 1 1 1 
         1 0 1 1 0 0 1 1 0 
         0 1 1 1 1 1 1 1 1 
         
        For steps of size 2, we have: 
         5 stairs with 1 step 
         1 stair with 2 steps 
         1 stair with 3 steps 
         1 stair with 4 steps 
         
        For steps of size 3, we have: 
         4 stairs with 1 step 
         
         4 
         
         
        $ python quiz_5.py 
        Enter three positive integers: 0 3 7 
        Here is the grid that has been generated: 
         1 1 0 1 1 1 1 
         1 1 1 1 1 1 0 
         1 1 1 0 0 1 1 
         0 1 1 1 1 1 1 
         1 0 0 0 1 0 1 
         1 1 1 0 1 1 1 
         1 1 0 0 1 1 0 
         
        For steps of size 2, we have: 
         2 stairs with 1 step 
         2 stairs with 2 steps 
         
        For steps of size 3, we have: 
         1 stair with 2 steps 
         
         
        $ python quiz_5.py 
        Enter three positive integers: 0 4 8 
        Here is the grid that has been generated: 
         1 1 0 1 1 1 1 1 
         1 1 1 1 1 1 1 1 
         0 1 1 1 1 1 1 0 
         0 1 1 1 0 1 1 1 
         1 1 1 1 1 1 1 0 
         1 0 0 1 0 1 1 1 
         1 1 0 1 1 1 1 1 
         1 1 0 0 1 1 1 0 
         
        For steps of size 2, we have: 
         7 stairs with 1 step 
         3 stairs with 2 steps 
         2 stairs with 3 steps 
         
        For steps of size 3, we have: 
         2 stairs with 1 step 
         1 stair with 2 steps 
         
        For steps of size 4, we have: 
         1 stair with 1 step 
         
         5 
         
         
        $ python quiz_5.py 
        Enter three positive integers: 0 5 9 
        Here is the grid that has been generated: 
         1 1 0 1 1 1 1 1 1 
         1 1 1 1 1 1 1 0 1 
         1 1 1 1 1 1 0 1 0 
         1 1 1 1 0 1 1 1 1 
         1 1 1 1 1 1 1 0 1 
         0 0 1 1 1 1 1 0 1 
         1 1 1 1 1 1 0 1 1 
         1 1 1 1 1 0 0 1 1 
         1 0 1 1 1 1 0 1 1 
         
        For steps of size 2, we have: 
         4 stairs with 1 step 
         5 stairs with 2 steps 
         1 stair with 3 steps 
         2 stairs with 4 steps 
         
        For steps of size 3, we have: 
         9 stairs with 1 step 
         
        For steps of size 4, we have: 
         2 stairs with 1 step 
         
         
         6 
         
         
        Some Test Cases Explained 
         
        $ python quiz_5.py 
        Enter three positive integers: 0 1 3 
        Here is the grid that has been generated: 
         1 1 0 
         1 1 1 
         1 1 1 
         
        For steps of size 2, we have: 
         2 stairs with 1 step 
        $ python quiz_5.py 
        Enter three positive integers: 0 3 9 
        Here is the grid that has been generated: 

         
        請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




         

        掃一掃在手機打開當前頁
      1. 上一篇:菲律賓落地簽和旅游簽長什么樣 圖片樣式介紹
      2. 下一篇:COMP9414代做、代寫Python程序設(shè)計
      3. ·COMP9021代做、代寫Python設(shè)計程序
      4. 合肥生活資訊

        合肥圖文信息
        出評 開團工具
        出評 開團工具
        挖掘機濾芯提升發(fā)動機性能
        挖掘機濾芯提升發(fā)動機性能
        戴納斯帝壁掛爐全國售后服務(wù)電話24小時官網(wǎng)400(全國服務(wù)熱線)
        戴納斯帝壁掛爐全國售后服務(wù)電話24小時官網(wǎng)
        菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話24小時服務(wù)熱線
        菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話2
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時客服熱線
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時
        海信羅馬假日洗衣機亮相AWE  復古美學與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機亮相AWE 復古美學與現(xiàn)代
        合肥機場巴士4號線
        合肥機場巴士4號線
        合肥機場巴士3號線
        合肥機場巴士3號線
      5. 上海廠房出租 短信驗證碼 酒店vi設(shè)計

        主站蜘蛛池模板: 日本大香伊一区二区三区| 人妻无码一区二区视频| 国产免费一区二区视频| 一区二区传媒有限公司| 亚洲日本va午夜中文字幕一区| 日本一区免费电影| 一区二区三区在线观看| 无码国产精品一区二区免费式芒果| 精品一区二区三区在线观看| 波多野结衣精品一区二区三区 | 精品理论片一区二区三区| 亚洲国产美女福利直播秀一区二区| 色狠狠色噜噜Av天堂一区| 午夜无码一区二区三区在线观看| 国产在线观看一区二区三区 | 国产一区二区三区在线视頻| 波多野结衣在线观看一区二区三区| 精品国产日韩亚洲一区在线 | 在线精品亚洲一区二区三区| 精品伦精品一区二区三区视频| 美女福利视频一区二区| 精品中文字幕一区在线| 国产一区二区在线观看麻豆| 国产乱子伦一区二区三区| 国产av夜夜欢一区二区三区| 国产A∨国片精品一区二区| 精品国产AⅤ一区二区三区4区| 亚洲一区视频在线播放| 中文字幕一区日韩在线视频| 综合久久久久久中文字幕亚洲国产国产综合一区首 | 在线观看国产一区| 美女一区二区三区| 91在线一区二区三区| 无码中文人妻在线一区| 国产成人av一区二区三区不卡| 四虎一区二区成人免费影院网址| 久久精品国产一区二区| 肉色超薄丝袜脚交一区二区| 伊人久久大香线蕉AV一区二区| 日韩一区二区免费视频| 日韩一区二区三区精品|