合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

        CSC1002代做、Python程序設計代寫
        CSC1002代做、Python程序設計代寫

        時間:2025-03-21  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



        CSC1002 – Computational Laboratory
        Iris - 2025
        OVERVIEW
        Inspired by a high school student I met in a high-school elite event organized by SSE in 2024. Her name 
        is Iris. In this assignment, you are going to design and develop a program to display as many polygon 
        shapes as possible on the canvas in random locations within a given period of time. Your program will 
        load the custom shapes (name and coordinates) of all the polygons from an external file, start tracking 
        the elapsed time and then repeatedly perform the shape-placement operation. Initially the canvas is 
        empty. The shape-placement operation picks a random polygon shape, a random color and a random 
        pair of x, y coordinates, trying to position the chosen polygon on the canvas at the chosen x, y 
        coordinate, on condition that it is completely separate from all other polygons already drawn on the 
        canvas. If it fails, your program repeatedly attempts to place the same polygon in another location by 
        choosing another random pair of x, y coordinates. No polygon can be placed within another polygon 
        and any polygon cannot touch or overlap any other polygons. The placement operation ceases any 
        further attempts for another polygon once the elapsed time has expired. The duration length is defined 
        by the user at the program's launch. Please refer to the scope for detailed requirements.
         
        CSC1002 – 2025 Winter By Kinley Lam
        CSC1002 – Computational Laboratory
        SCOPE
        1. Drawing Canvas - Use module “turtle” to create the drawing canvas, 75% width and 75% height 
        of computer’s screen resolution, positioned at the center of the computer’s screen.
        2. Input - prompt the user to enter the following information:
        a. Stretch Value - a value used to resize polygon in both width and height. Default is 1.
        b. Duration - total number of seconds to place random polygons on canvas. Default is 5.
        c. Random Seed - the seed value used to initialize the random module. Default is 1.
        d. Terminate - ‘y’ or ’n’. Default is ’n’
        3. Termination 
        a. after the duration is up, the program stops placing additional polygons on the canvas 
        and then shows the total count of polygons successfully displayed on the canvas. In the 
        title bar of the canvas, show your student ID, the time the operation started and ended, 
        elapsed time (seconds) and the number of polygons displayed:
         and simply print the polygon count with your student ID on the console:
        b. Change the background color of the canvas to black.
        c. if “Terminate” is ‘y’ then exit the program immediately; otherwise do nothing and keep 
        the canvas active so that TA can verify the positions of polygons on the canvas.
        4. Custom Shapes - the names and coordinates of all polygons are given in an external file called 
        shapes.txt. Ensure the mode of the screen is set to “logo” and register the custom shapes using 
        addshape(name, coordinates).
        5. Shape-Placement Operation
        a. Track the elapsed time
        b. Pick a random color - from a predefined list of colors (see template file).
        CSC1002 – 2025 Winter By Kinley Lam
        CSC1002 – Computational Laboratory
        c. Pick a random polygon shape
        d. Stretch the chosen polygon in both x and y directions and set the shape color 
        accordingly using the following methods:
        i. shapesize(value, value)
        ii. color(value) 
        e. Try repeatedly placing the chosen polygon on the canvas at a random location:
        i. pick a random x, y coordinates
        ii. show the polygon at the chosen x, y coordinates if the following conditions are 
        met:
        1. no further adjustment is allowed to the polygon including rotation, 
        heading adjustment, shearing, etc. 
        2. simply call goto(x, y) to move the chosen polygon 
        3. the polygon must be completely separate from all other polygons 
        already drawn on the canvas
        4. the polygon cannot be placed within another polygon
        5. the polygon cannot touch or overlap any other polygons
        iii. if the condition isn’t met and there is more time to continue, repeat the above 
        steps.
        f. track of the number of polygons successfully shown on the canvas.
        g. Repeat all the steps above until the total elapsed time (in seconds) exceeds the entered 
        duration. 
        6. Template File - follow the provided template file to complete the assignment.
        NOTE: 
        • Keep your entire source code in ONE SINGLE file.
        • Use only Python modules as specified in the “Permitted Modules” section.
        • In your design stick ONLY to functions, in other words, no class objects of your own. 
        o Furthermore, the lines of code containing the sub-function(s) defined within another 
        function will be counted as part of the parent function.
        o NOTE: Failure to adhere to the instructions outlined in the assignment handout will 
        result in a 50% reduction in the coding style score.
        CSC1002 – 2025 Winter By Kinley Lam
        CSC1002 – Computational Laboratory
        STARTUP OPTIONS
        Not applicable
        SKILLS
        In this assignment, you will be trained on the use of the followings:
        • Refactoring - logic reuse or simplification based on the existing logic.
        • Variable scope: global, local and function parameters.
        • Coding Styles (naming convention, meaningful names, comments, doc_string, …etc)
        • Problem Decomposition, Clean Code, Top-Down Design
        • Functions (with parameters and return) for program structure and logic decomposition
        • Standard objects (strings, numbers & lists)
        • Variable Scope
        PERMITTED MODULES
        Only the following Python module(s) is allowed to be used:
        • turtle
        • random
        • time
        DELIVERABLES
        Program source code (A2_School_StudentID.py), where School is SSE, SDS, SME, HSS, FE, LHS, MED and 
        StudentID is your 9-digit student ID.
        For instance, a student from SME with student ID “119010001” will name the Python file as follows:
        • A2_SME_119010001.py:
        Ensure that your source file is saved in standard, regular UTF-8 encoding format. On the status bar of 
        Visual Studio Code, you can view the current encoding format as follows:
        On an occasion, the encoding scheme is set to UTF-8 with BOM as follows:
        CSC1002 – 2025 Winter By Kinley Lam
        CSC1002 – Computational Laboratory
        The presence of the Byte Order Mark (BOM) could be due to copying from websites, older versions of 
        editor, file conversion from other sources, default encoding settings, and so on. 
        Confirm the encoding scheme is UTF-8 and the file name is correct, then submit the plain program file to 
        the corresponding assignment folder. A deduction of 5% will be penalized if the file is incorrectly named 
        or in wrong encoding format.
        TIPS & HINTS
        • Apply problem decomposition, Clean Code and Refactoring as illustrated during classes.
        • Beware of variable scope as you might keep a few variables as global such as current editor 
        content, cursor position, undo buffer, and so on.
        • Refer to Python website for program styles and naming conventions (PEP 8)
        CSC1002 – 2025 Winter By Kinley Lam
        CSC1002 – Computational Laboratory
        SAMPLE OUTPUT
        NOTE: REFER TO THE SCOPE FOR THE REQUIRED INFORMATION TO BE DISPLAYED IN THE TITLE BAR OF THE TURTLE
        GRAPHICS WINDOWS.
        CSC1002 – 2025 Winter By Kinley Lam
        CSC1002 – Computational Laboratory
        MARKING CRITERIA
        • Coding Styles – overall program structure including layout, comments, white spaces, naming 
        convention, variables, indentation, functions with appropriate parameters and return.
        • Program Correctness – whether or the program works 100% as per Scope. 
        • User Interaction – how informative and accurate information is exchanged between your 
        program and the player.
        • Readability counts – programs that are well structured and easy to follow using functions to 
        break down complex problems into smaller cleaner generalized functions are preferred over a 
        function embracing a complex logic with many nested conditions and branches! In other words, 
        a design with a clean architecture and high readability is the predilection for the course 
        objectives over efficiency. The logic in each function should be kept simple and short, and it 
        should be designed to perform a single task and be generalized with parameters as needed.
        • KISS approach – Keep It Simple and Straightforward.
        • Balance approach – you are not required to come up with a very optimized solution. However, 
        take a balance between readability and efficiency with good use of program constructs. 
        DUE DATE
        April 6th, 2025, 11:59:00PM
        ITEMS PERCENTAGE REMARKS
        CODING STYLES 50%-60% 0% IF PROGRAM DOESN’T RUN
        FUNCTIONALITY 50%-60% REFER TO SCOPE
        CSC1002 – 2025 Winter By Kinley Lam

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




         

        掃一掃在手機打開當前頁
      1. 上一篇:COMP 5076代寫、代做Python/Java程序
      2. 下一篇:46-886 Machine Learning Fundamentals
      3. 無相關信息
        合肥生活資訊

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

        主站蜘蛛池模板: 国产韩国精品一区二区三区| 久久无码精品一区二区三区| 国产福利一区二区| 中日av乱码一区二区三区乱码| 久久精品无码一区二区三区免费| 日本一区二区免费看| 国内精自品线一区91| 亚洲AV无码一区二区三区性色 | 国产精品男男视频一区二区三区| 亚洲日本久久一区二区va| 亚洲夜夜欢A∨一区二区三区 | 中文字幕久久久久一区| 国产乱码精品一区二区三区四川人| 91精品一区二区综合在线| 无码少妇一区二区三区| 久久se精品一区精品二区| 精品一区二区久久| 久久一区二区免费播放| 变态拳头交视频一区二区| 中文字幕一区日韩在线视频| 国偷自产av一区二区三区| 国产精品无码一区二区三级 | 国产微拍精品一区二区| 亚洲国产系列一区二区三区| 91福利视频一区| 国产av一区最新精品| 国产精品熟女视频一区二区| 国产人妖视频一区二区破除 | 日韩精品人妻一区二区三区四区| 中文字幕AV一区二区三区人妻少妇| 午夜性色一区二区三区免费不卡视频| 一区二区三区四区免费视频| 亚洲综合无码一区二区三区 | 国产一区二区三区在线观看影院| 午夜爽爽性刺激一区二区视频| 免费萌白酱国产一区二区| 国产福利一区二区在线视频| 国产一区二区三区在线2021| 国产日韩一区二区三区| 国产精品va一区二区三区| 99精品国产一区二区三区|