国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

COMP1711 代寫、代做 C++語言程序

時間:2024-08-11  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



 Module code
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
Resit Assessment Brief
Procedural Programming
COMP1711
Resit – Carbon Capture Data Analysis
You should spend around 10-15 hours on this assessment. 100%
Via Gradescope.
Automated feedback through Gradescope
Amy Brereton
   Module title
      Assignment title
   This is a programming assignment. You will design and create a number of programs to solve a problem from your client.
  You are doing this assessment to develop your skills in software design and development.
    Assignment type and description
    Rationale
  Word limit and guidance
   Weighting
      Submission deadline
9th August 2024 @ 23:59 BST
There are no late submissions permitted.
   Submission method
   Feedback provision
       Learning outcomes
assessed
LO1: select appropriate data types to represent data.
LO2: apply problem solving techniques to develop a programming solution to real world problems.
LO3: design, implement, debug and test procedural programs.
   Module leader
   Other Staff contact
  
 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
1. Assignment guidance
Scenario, Struct & tokeniseRecord()
You have been asked to work on a new sustainability project, exploring the effectiveness of new carbon- capture techniques by analysing data files produced by sensors.
The data is stored in comma separated value (csv) files, and each row in the file is in this format:
2023-09-01,08:15,150
**3; The first column represents the date (in YYYY-MM-DD format).
**3; The second column represents the time (8.15am in our example).
**3; The third column represents the units of carbon saved (measured in grams) since the last timestamp.
These files are valid if:
- They contain between 1 and 1000 records (inclusive)
- All carbon readings are positive
- The times and dates are valid
- There are no missing values.
To store this data, one of the other developers on your team has produced a custom struct which you can use to store the information for each row in the file:
typedef struct _CARBON_DATA {
    char date[11];
    char time[6];
    int carbon_units;
} carbonData;
And you have also been given the function tokeniseRecord() which is able to split records into their comma separated values – the README.md in the code folder has a brief explanation of how to use this function.
Development Process
It is recommended that you use Github Codespaces, which gives you access to a Linux virtual machine which can run from any internet connected device.
You should develop your code on a private repository to prevent others from accessing it.
You can also access the University’s virtual Linux desktop via:
https://feng-linux.leeds.ac.uk/
You will need to be running the PulseSecure VPN in order to access Feng: instructions here (you must be logged on to the IT service website to access)
   
 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
2. Assessment tasks Task 1: Reading Data
Task 1 marks: 25 Expected time: 1 - 2 hours
To ensure that data can be correctly read in from the files, you will make a simple C program which is able to:
1. Read in the csv file (for this task, always named ‘CarbonData_2023.csv’)
o Youmayassumethatthisfilealwaysexistsandisalwaysvalidfortask1.
2. Store it in a suitably sized and structured array using the provided struct carbonData
3. Write the number of records in the file to the screen in this exact format (234 is just an example):
     Number of records in file: 234
4. Write to the screen the first three rows of the file in the following format:
     2023-09-01/07:30/300
     2023-09-01/07:45/400
     2023-09-01/08:00/600
Note that there are NO SPACES in the output string, each value is separated by a single forward slash ‘/’ with a single newline after each row.
How it’s marked:
All submitted code for all tasks is marked by an autograder which checks that your code meets the requirements from the brief. You will see a selection of tests when you submit your code, but some will not be visible to you.
  Each section is tested separately, and marks are available for each individual test.
SECTION
Reading in a new set of data from CarbonData_2023.csv
Printing out the correct first 3 rows
TASK 1 - TOTAL
MARKS AVAILABLE
2.5 marks
10 marks
25 MARKS
  Reading in the original CarbonData_2023.csv file
  2.5 marks
 Printing out the correct number of records
 10 marks

 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
Task 2: Analysing Data Task 2 marks: 40
Expected time: 4 – 5 hours
Now that you have been able to read the data into an appropriate structure, you have been given the task of making a tool to analyse the data to give some useful statistics.
Follow good programming practices by structuring your program into two separate files:
CarbonDataStruct.h – A header file containing includes, the struct and any helper functions you'd like to include – the template includes tokeniseRecord().
CarbonAnalysis.c – A program file containing the code and functions needed to solve the given tasks.
Requirements:
The program should present a simple menu system to the user, offering the following functions:
A: Specify the filename to be imported. Implement error checking to handle incorrect filenames. B: Display the total number of records in the file.
C: Find the date and time of the timeslot with the fewest carbon units saved.
D: Find the date and time of the timeslot with the most carbon units saved.
E: Calculate the mean carbon units saved across all records in the file.
F: Identify the longest continuous period where the carbon units saved are below 100 grams. Q: Quit the program
When an option is selected, you code should show the correct data and then return to the menu.
You must not use ‘clear()’, ‘cls()’ or any other method which clears the screen – this causes issues with grading.
The data should be printed out in the formats below:
Option Example output
B Total records: 229
C Lowest units: 2023-09-01 14:20
D Highest units: 2023-09-01 18:00
E Mean units: 427
Note: This should be rounded to the nearest integer (1.4 -> 1, 1.5 -> 2)
F Longest period start: 2023-09-01 14:20 Longest period end: 2023-09-01 18:00
If the filename provided is invalid (does not exist/cannot open) – you must exit the program and return the value 1.
You do not need to check that the data inside is valid.
                 
 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
How it’s marked:
SECTION
B – Correctly counting records in a file
D – Finding row with highest carbon units
F – Finding the correct period of < 100 units.
TASK 2 - TOTAL
In order to make the autograder work correctly, you must follow the format and return codes given above.
You will get a small amount of feedback from the grader, but you should ensure that you have tested your code and its behaviour on a variety of different files – do not just rely on testing it on one file!
You can make the following assumptions for task 2:
- The data in the .csv file is always valid
- The user will always set a filename first (i.e the grader will always run ‘A’ first)
- The user will always input capital letters to the menu (i.e ‘A’, ‘B’, etc.)
- There will only be one instance of a count which is the lowest/highest
- There won’t be multiple periods < 100 of the same length.
 MARKS AVAILABLE
5 marks
5 marks
10 marks
  A - File handling / dealing with invalid filenames
  5 marks
 C – Finding row with lowest carbon units
 5 marks
 E – Finding correct mean average of units
 10 marks
40 MARKS

 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
Task 3: Presenting Data Task 3 marks: 20 marks
Expected time: 2 – 3 hours
This task requires you to write a utility program to output the data file sorted by descending order of carbon count in tab separated value (.tsv) format.
A .tsv file differs slightly from a .csv in that the delimiter (character which separates each piece of data) isn’t a comma (,) but a tab character. This has the special code \t which places an appropriate number of spaces when printed.
Your program should:
1. Ask for a filename and check the file exists.
2. Read the data file – and validate that the data is in the correct format
3. Write out the sorted data into a new file. The record with the highest carbon count should be at the
top and the record with the smallest carbon count should be at the bottom (descending order). If any records contain the same carbon count, these should be in chronological order (the one which occurred first should be at the top).
An example .tsv file is provided in the carbon_files/valid/ folder.
If the filename provided is invalid (does not exist/cannot open) – you must exit the program and return the value 1.
If the data format is wrong – you must exit the program and return the value 2.
 If the input file is:
mydata.csv
The output file should be called:
mydata.csv.tsv
You should submit files:
CarbonDataStruct.h - containing any functions/structs you use in your source code. CarbonDataSorter.c - containing your source code.
How it’s marked: SECTION
Handling invalid data TASK 3 - TOTAL
MARKS AVAILABLE
6 marks
20 MARKS
   File handling
  2 marks
 Correctly sorting and outputting the data
 12 marks

 Invalid File Specification
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
An invalid file will contain one or more of the following:
- Invalid carbon count: o Notanint
o<0
- Date which is invalid:
o Not in format YYYY-DD-MM
o Day>31or<0
o Month>12or<1
o YearBetween2000–2024(inclusive)
o Norequirementtovalidatenumberofdaysinmonth(i.e.2023-02-31isvalid)
- Time which is invalid:
o Not in format HH:MM
o Hours>23or<0
o Mins>59or<0
- A record with a missing or empty field

 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
Task 4: Quiz Task 4 marks: 15
Expected time: 1 hour
For this task, you will need to complete the 15 question multiple-choice quiz on Gradescope.
There are 3 sections with 5 multi-choice questions each:
- Questions about a provided piece of C code
- Questions about programming in general
- Questions about code quality
Once you begin the quiz, you have 60 minutes to complete it. You only have one attempt to complete it, so be prepared in a quiet environment where you will be able to focus – you should also ensure you have a stable internet connection and a device with sufficient power for 60 minutes.
You may complete this part of the assignment at any time before the deadline.
This is an assessment, and therefore must be completed independently. You can use any notes or online
resources you would like, but you must not work with other students. How it will be marked:
Each of the 15 questions is worth 1 mark – partial marks are not awarded for questions where you can choose multiple answers.
You will not see your mark or any feedback until after marks are released.
 
 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
3. General guidance and study support
Please refer to the module teaching materials in Minerva for any background support.
4. Assessment criteria and marking process
All code is graded solely on functionality – you must ensure that your code follows the brief exactly, and use the feedback from the grader to check that your code is passing the visible tests.
The passing mark for the assessment is 40% - you may obtain this grade through any combination of tasks/parts of tasks.
5. Presentation and referencing
If you use an idea in your solution that you have seen on the Web somewhere then add a comment to the code like this:
// I based this on an idea I found here:
// https://stackoverflow.com/questions/12**1021/error-in-c-file-handling
If you use a book or a printed resource then give the author and title:
// I based this on an idea I got from here:
// An Introduction to C and GUI Programming by Simon Long, pages 56-57
This assignment is rated ORANGE for use of generative AI tools – this means that you may use generative AI tools in an assistive capacity, but must not generate any of your final answer directly from a generative AI tool.
You may not give any generative AI tool access to this brief or any part of this brief, nor ask it to write code for you.
You must reference any use of any generative AI by comment in the format below: // I based this on a discussion with ChatGPT
// Prompt: Explain how to import a CSV file in C
6. Submission requirements
Your code must:
- Be in C
- Compile on Linux with the following command: gcc *.c –o task
- Not be inside a subfolder (not in a zip)

 UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
7. Academic misconduct and plagiarism
Leeds students are part of an academic community that shares ideas and develops new ones.
You need to learn how to work with others, how to interpret and present other people's ideas, and how to produce your own independent academic work. It is essential that you can distinguish between other people's work and your own, and correctly acknowledge other people's work.
All students new to the University are expected to complete an online Academic Integrity tutorial and test, and all Leeds students should ensure that they are aware of the principles of Academic integrity.
When you submit work for assessment it is expected that it will meet the University’s academic integrity standards.
If you do not understand what these standards are, or how they apply to your work, then please ask the module teaching staff for further guidance.
By submitting this assignment, you are confirming that the work is a true expression of your own work and ideas and that you have given credit to others where their work has contributed to yours.
 8. Assessment/ marking criteria grid
   Task
Task 1 Task 2 Task 3 Task 4
Description
Reading Data Analysing Data Presenting Data Multiple choice quiz
Marks available
25 40 20 15
Total 100
                 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:COMP1212 代做、代寫 Java/Python 設計程序
  • 下一篇:MAS362 代寫、JAVA/C++編程設計代做
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美精品一本久久男人的天堂| 久热国产精品视频一区二区三区| 午夜精品在线观看| 欧美中文字幕在线| 91精品国产高清久久久久久| 欧美专区中文字幕| 国产精品一区二区3区| 久久精品国产亚洲7777| 成人福利视频网| 国产精品免费区二区三区观看| 日本一区不卡| 欧美中文在线视频| 亚洲综合日韩中文字幕v在线| 久久精品中文字幕一区二区三区| 久久av在线播放| 久久免费看毛片| 精品国产乱码久久久久久108| 韩国一区二区三区美女美女秀| 日韩在线视频免费观看| 日韩精品一区二区三区电影| 视频一区视频二区国产精品| 欧美视频1区| 久久亚洲精品网站| 麻豆中文字幕在线观看| 国产又粗又长又爽视频| 美女国内精品自产拍在线播放| 日韩在线xxx| 狠狠色噜噜狠狠色综合久| 成人精品视频在线| 国产精品电影网| 91精品视频免费| 麻豆av一区二区三区久久| 欧美日韩一区在线播放| 欧美猛交免费看| 麻豆国产va免费精品高清在线| 一区二区冒白浆视频| 黄色网zhan| 久久精品视频网站| 成人国产一区二区| 国产精品一区二区免费看| 亚洲淫片在线视频| 黄页免费在线观看视频| 国产va免费精品高清在线观看| 久久久久久久激情视频| 国产日本在线播放| 北条麻妃99精品青青久久| 狠狠色噜噜狠狠狠狠色吗综合| www.欧美黄色| 99视频网站| 国产精品亚洲综合天堂夜夜| 不卡av在线播放| 91久久久久久久久久| 8050国产精品久久久久久| 色妞在线综合亚洲欧美| 超在线视频97| 激情五月六月婷婷| 91美女片黄在线观| 国产精品久久久久久影视| 亚洲成熟丰满熟妇高潮xxxxx| 午夜欧美一区二区三区免费观看| 国内视频一区二区| 久久91亚洲精品中文字幕| 欧美日本精品在线| 欧美变态另类刺激| 日韩在线观看免费高清| 日韩免费av一区二区三区| 久久久福利视频| 日本一区二区三区www| 国产精品亚洲美女av网站| 久久精品电影一区二区| 日本精品一区二区三区在线| 久久精品二区| 日韩av电影在线播放| 国产伦精品一区二区三区| 国产精品免费小视频| 欧美极品一区| 欧美激情中文网| 99在线看视频| 欧美日韩无遮挡| 国产精品精品国产| 欧美日韩精品一区| 欧美乱妇40p| 成人中文字幕在线观看| 亚洲aⅴ日韩av电影在线观看| 99re在线视频上| 久久久国产影院| 色之综合天天综合色天天棕色| 日韩亚洲成人av在线| 久久亚洲精品欧美| 91精品国产色综合| 91精品国产自产91精品| 国产青草视频在线观看| 日韩欧美精品一区二区| 亚洲精蜜桃久在线| 午夜免费久久久久| 欧美日韩国产va另类| 欧美激情视频在线| 欧美日本啪啪无遮挡网站| 国产精品免费小视频| 精品日本一区二区| 国产精品久久久91| 91九色丨porny丨国产jk| 久久免费一级片| 久久精品国产91精品亚洲| 日韩偷拍一区二区| 精品乱子伦一区二区三区| av免费中文字幕| 久久精品亚洲热| 日韩wuma| 国产精品久久久一区| 91精品久久久久久久久久久久久| 久久综合久久88| www.亚洲免费视频| 国产欧美va欧美va香蕉在线| 99精品一区二区三区的区别| 亚洲精品一区二区三区蜜桃久| 97干在线视频| 欧美xxxx14xxxxx性爽| 国产福利精品av综合导导航| www.欧美三级电影.com| 国产av熟女一区二区三区| 午夜精品一区二区三区在线播放| 国产成人精品在线视频| 国产日韩欧美精品在线观看| 欧美日韩一区二区三区在线观看免| 亚洲精品久久久久久一区二区| 国产精品a久久久久久| 国产综合香蕉五月婷在线| 91久久伊人青青碰碰婷婷| 欧美久久精品一级黑人c片| 国产传媒一区二区| 国产美女直播视频一区| 国产女主播av| 亚洲精品久久久久久一区二区| 久久精品日产第一区二区三区精品版| 精品久久蜜桃| 日韩中文字幕不卡视频| 国产精品久久久久久久久久小说| 欧美情侣性视频| 亚洲精品一区二区三区av| 午夜精品一区二区三区av| 色妞久久福利网| 久久精品视频16| 高清一区二区三区四区五区| 成人在线观看毛片| 国产久一道中文一区| 国产中文欧美精品| 国产欧美久久久久| 欧洲精品亚洲精品| 午夜精品99久久免费| 久久伊人91精品综合网站| 亚洲精品视频一二三| 精品一区二区视频| 久久综合给合久久狠狠色| 久久综合九色九九| 欧美国产日韩激情| 久久久亚洲精品无码| 久久久av网站| 午夜老司机精品| 91国自产精品中文字幕亚洲| 国产99在线|中文| 精品欧美日韩在线| 国产精品久久..4399| 日韩国产一区久久| 久久久久久久久久久99| 日本人妻伦在线中文字幕| 国产精品99免视看9| 久久99精品视频一区97| 国内揄拍国内精品| 北条麻妃久久精品| 精品欧美国产| 精品国产乱码久久久久软件| 欧美日韩高清免费| 久久久999成人| 黄黄视频在线观看| 精品国产aⅴ麻豆| 超碰成人在线免费观看| 日韩av免费看网站| 日韩av不卡播放| 一区二区精品在线观看| 一女被多男玩喷潮视频| 日本一本a高清免费不卡| 99爱视频在线| 国产精品久久久久77777| 国产精品第12页| 日本免费黄视频| 国产成人黄色av| 九九热精品视频国产| 手机看片日韩国产| 久久久性生活视频| 精品国产乱码久久久久久郑州公司 | 免费不卡亚洲欧美| 欧美精品在线免费| 欧美一级大片视频| 91精品综合视频| 精品久久久久久乱码天堂| 欧美乱大交xxxxx潮喷l头像| 国产精品99久久免费黑人人妻| 亚洲aaa激情| 俺去了亚洲欧美日韩|