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

        代寫ENGG1340、代做Python/C++編程語言
        代寫ENGG1340、代做Python/C++編程語言

        時間:2025-03-04  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



        ENGG1340 Programming Technologies / COMP2113 Computer Programming II
        Assignment 1
        Deadline: 1 March (Saturday), 2025 23:59
        General Instructions
        Submit your assignment via VPL on Moodle. Ensure that your program can execute, and generate the required outputs in
        VPL. Work incompatible with the VPL may not be marked.
        For shell scripts (Problem 1 and 2), they must starts with the header #!/bin/bash, and will be executed using the Bash
        shell on our standard environment.
        As a developer, ensure that your code works flawlessly in the intended environment, not just your own. While you may
        develop your work in your own environment, always test your program in our standard environment before submission.
        Evaluation
        For tasks requiring user input, utilize the standard input. Likewise, your program should output/print through the
        standard output. Strict adherence to the sample output format is required, or your answer may be marked incorrect.
        Your code will be automatically graded for technical correctness. Essentially, we use test cases to evaluate your
        solution, failure to pass any of the test cases may result in zero marks. Partial credits are generally not given for
        incomplete solutions as it may be challenging to objectively assess incomplete program logic. However, your work may
        still be considered on a case-by-case basis during the rebuttal stage.
        Additional test case will be used during grading. Scoring full marks on VPL does not ensure full marks in the assignment.
        Sample test cases may or may not encompass all boundary cases. Designing proper test cases to verify your program’s
        accuracy is part of the assessment.
        Academic dishonesty
        Your code will be cross-checked with other submissions and online sources for logical duplication. Note that providing
        your work to others, aiding others in copying, or copying from others will be considered plagiarism, and will be dealt with
        as per departmental policy. Please refer to the course information notes for more details.
        Use of generative AI tools, like ChatGPT, is not permitted for all assignment.
        Getting help
        You are not alone! If you are stuck, post your query on the course forum. This assignment should be educational and
        rewarding, not frustrating. We are here to help, but we can only do so if you reach out.
        Please avoid spoilers on the discussion forum. Do not post any code directly related to the assignments. You are,
        however, encouraged to discuss general concepts on the forums.
        Submission
        Deadlines are strictly enforced. Resubmission beyond the submission period will not be accepted.
        Late Policy:
        If you submit within 2 days after the deadline, 30% deduction.
        If you submit within 3-5 days after the deadline, 50% deduction.
        After that, no mark.
        Problem 1: Count Substring Matches
        Write a shell script that takes two command line arguments substring and file. It will count the words that contains
        substring in file and produce the result.
        Input:
        The shell script does not read input from user. However, it expects two command line arguments substring and
        file.
        Output:
        The script should list all words found, with the number of occurrences of that word in file. Refer to the sample
        outputs for the exact format.
        The words should be listed in descending order of the number of occurrences. For words with the same number of
        occurrences, they should be listed in ascending order of their ASCII values.
        The script should output nothing when there are fewer than two command line arguments specified or when the
        file does not exist.
        Assumptions:
        The command line argument substring contains alphabets only. There will be no digits, symbols, or whitespace
        characters in substring.
        file, if exists, is a plain text file and is readable by all user.
        The locale settings of the shell can affect the result of sorting. The shell script will be executed using Locale “C”. If
        you are testing in your own Linux environment, please execute command export LC_ALL=C.UTF-8 to change the
        locale settings accordingly.
        Requirements:
        For this question, a word is bounded by spaces or symbols, or by line boundaries (i.e., start of a line or end of a
        line). For example, the string Gutenberg(TM)'s should be treated as three words Gutenberg, TM, and s.
        Substring matching should be case insensitive. E.g., searching for tale should find TALE and tale.
        On the other hand, when counting the number of occurrences of a word, it should be done in a case-sensitive
        manner. E.g., TALE and tale should be counted separately.
        Notes:
        A file ebook.txt is provided for testing. A different file may be used when grading your work.
        Study the man page of grep and sort to learn about possible options to use for this task.
        There is no need to follow the exact amount of leading spaces shown in the sample outputs. Leading spaces will
        be ignored in evaluation. If you are testing in your own environment, you can use flag -Bw of command diff for
        comparison.
        Sample Test Cases
        1_1
        Command: ./1.sh tale ebook.txt
        Output:
        3 TALE
        2 Tale
        1_2
        Command: ./1.sh time ebook.txt
        Output:
        30 time
        10 times
        3 Sometimes
        1 lifetime
        1 oftentimes
        1 sentiment
        1 sometimes
        1_3
        Command: ./1.sh jerry ebook.txt
        Output:
        14 Jerry
        1_4
        Command: ./1.sh pokemon ebook.txt
        Output: (it’s empty)
        Problem 2: Credit card number validation
        Write a Shell Script for validating credit card numbers using the Luhn algorithm.
        The steps to validate a credit number using the Luhn algorithm are as follows:
        1. Starting from the rightmost digit (that is the check digit), double the value of every second digit.
        2. If the doubled value is a two-digit number, sum the digits of that number together to form a single digit.
        3. Add all the 16 digits together.
        4. If the final sum is divisible by 10, then the credit card is valid. If it is not divisible by 10, the number is invalid or fake.
        For example, consider the credit card number 4512 3456 7890 1234. Applying the Luhn algorithm:
        Double every second digit, starting from the right: 4, 6, 2, 2, 0, 18, 8, 14, 6, 10, 4, 6, 2, 2, 5, 8.
        Sum all the resulting digits: 4 + 6 + 2 + 2 + 0 + 9 + 8 + 5 + 6 + 1 + 4 + 6 + 2 + 2 + 5 + 8 = 70.
        Since 70 is divisible by 10, the credit card number is valid.
        Input:
        The shell script reads one credit card number from user.
        Output:
        The script should output a message reporting the validity of the credit card number. Refer to the sample outputs
        for the exact format.
        Assumptions:
        You can assume that the input is always a 16-digit number, and each digit is in the range [0, 9]. There is no need to
        consider invalid inputs.
        Sample Test Cases (Inputs are shown in blue)
        2_1
        Enter the number for checking:
        4512345678901234
        The number 4512345678901234 is valid.
        2_2
        Enter the number for checking:
        4512345678901235
        The number 4512345678901235 is invalid.
        2_3
        Enter the number for checking:
        1234567890123456
        The number 1234567890123456 is invalid.
        2_4
        Enter the number for checking:
        1234567890123452
        The number 1234567890123452 is valid.

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



         

        掃一掃在手機(jī)打開當(dāng)前頁
      1. 上一篇:質(zhì)量流量計的信號輸出方式有哪些?
      2. 下一篇:代寫EL2311、代做SQL編程設(shè)計
      3. 無相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
        出評 開團(tuán)工具
        出評 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動機(jī)性能
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士3號線
        合肥機(jī)場巴士3號線
        合肥機(jī)場巴士2號線
        合肥機(jī)場巴士2號線
        合肥機(jī)場巴士1號線
        合肥機(jī)場巴士1號線
      4. 短信驗(yàn)證碼 酒店vi設(shè)計 NBA直播 幣安下載

        關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
        ICP備06013414號-3 公安備 42010502001045

        主站蜘蛛池模板: 国产在线观看一区二区三区精品 | 99偷拍视频精品一区二区| 日本一区二区在线播放| 美女免费视频一区二区| 精品一区二区三区免费毛片爱| 欧洲精品一区二区三区在线观看 | 天堂一区人妻无码| 中日av乱码一区二区三区乱码| 日韩免费一区二区三区| 99精品一区二区三区无码吞精| 久久se精品一区二区国产| 无码国产精品久久一区免费| 亚洲宅男精品一区在线观看| 奇米精品视频一区二区三区| 无码人妻精品一区二区三区夜夜嗨 | 无码人妻品一区二区三区精99| 天堂不卡一区二区视频在线观看 | 亚洲av午夜福利精品一区| 国产激情一区二区三区 | 日韩人妻无码一区二区三区综合部 | 精品日韩在线视频一区二区三区| 午夜性色一区二区三区不卡视频 | 亚洲熟妇AV一区二区三区宅男| 亚洲一区二区影院| 任你躁国语自产一区在| 免费无码一区二区三区| 国内精品一区二区三区东京 | 本免费AV无码专区一区| 久久精品无码一区二区三区日韩| 国产一区三区三区| 亚洲一区二区三区香蕉| 一区二区三区日韩精品| 蜜臀AV免费一区二区三区| 无码国产精品一区二区免费式直播 | 亲子乱AV视频一区二区| 亚洲国产成人一区二区三区| 久久久精品人妻一区二区三区四| 91精品一区二区| 在线日韩麻豆一区| 久久无码一区二区三区少妇| 国产亚洲一区二区在线观看|