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

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

 XJCO1711代寫、代做C++設計編程
 XJCO1711代寫、代做C++設計編程

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



UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
 
Assessment Brief 
 
Module title Procedural Programming 
Module code XJCO1711 
Assignment title Collaborating with HealthMate CIC on a Step Tracker Data Analysis Tool 
Assignment type and 
description 
This is a programming assignment. You will design and create a number of 
programs to solve a problem from your client. 
Rationale You are doing this assessment to develop your skills in software design and 
development. 
Word limit and guidance You will create a number of tested and working C programs 
Weighting 100%: This is the only assessment for this module 
Submission deadline Part 1: Friday November 8
th
 2024 (by 2pm) 
Part 2: Wednesday December 16
th 2024 (by 2pm) 
Submission method Online through Minerva. 
Feedback provision You will get automated feedback through Minerva and Gradescope 
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 Bo Peng 
Other Staff contact - 
 
  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
1. Assignment guidance 
HealthMate CIC, a Community Interest Company based in the UK, is embarking on an ambitious project to 
support healthy lifestyles and enhance digital literacy among high achieving secondary school students. 
 
Their intention is to create a proof of concept that combines health consciousness with the teaching of 
digital proficiency. 
 
As intern software developers, you have been signed up to work on the development of a step tracker data 
analysis tool, the first step in this large project. 
 
Your mission is to develop a console application in C capable of analysing step data derived from a data file. 
 
This tool should offer a large range of analyses to give users with detailed insights into their daily physical 
activity, so supporting HealthMate CIC’s vision of a digitally literate and health-conscious younger 
generation. 
 
Although you will be expected to submit files to Gradescope for marking, you should continue to use Git and 
Codespaces to develop your code. 
 
If ever there are doubts whether work is completely your own, we will be able to look at your commit history 
to confirm when you have been working. 
 
We can give you general guidance and remind you where to find relevant supporting material in the notes, 
but coursework is individual and by submitting you are confirming that it is your own individual effort. 
 
You must attempt the part 1 task. All the part 2 tasks are optional but remember that the passing grade for 
the module is 40%.  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
2. Assessment tasks 
Part 1: Submission deadline Friday November 8th 2024 (by 2pm) 
 
You can submit the task as many times as you like up to and including the deadline 
 
Total marks available: 15 
 
Task 1: Understanding our data files 
Difficulty level: BRONZE 
 
Task 1 marks: 15 
 
You are given a data file called FitnessData_2024.csv and a code template file StepsTask1.c 
 
Each row in the csv file looks like this: 
 
2024-09-01,08:15,150 
 
• The first column represents the date (in YYYY-MM-DD format). 
• The second column is a time (8.15am in our example) 
• The third column represents the steps counted in the 15 minutes immediately before the time stamp. 
Here, it means that the step counter has counted 150 steps between 8.00am and 8.15am. 
 
 
Your client wants you to write a single C program (called file_import.c) that will: 
• Read in this csv file 
• Store it in a suitably sized and structured array and typedef data structure 
• Write to the screen the first three rows of the file (corresponding to the times 07:30, 07:45, 08:00). 
This should be in the format: 
 
2024-09-01/08:15/150 
 
Note that there are NO SPACES here. We will test for this format EXACTLY. 
 
The output will be automatically marked so if you get the format wrong it’s likely you will get no 
marks. 
 
We will test it with multiple different files - so don’t “hard code” the output. 
 
This will involve you using an appropriate typedef (custom data structure). We suggest you use something 
like this and define it at the start of your program: 
 
typedef struct { 
 char date[11]; 
 char time[6]; 
 int steps; 
} FITNESS_DATA;  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
The template program we supply (see Minerva) has this typedef already in it. Feel free to use this or to come 
up with something better yourself. 
 
Also in the template, you will see that we have already written a helper function called tokeniseRecord that 
you can use to split the string representing each line from the file into a number of individual token strings. 
 
You do not need to understand how this function works and should not change it in any way. This is the 
same function that we have used before in our teaching sessions. 
 
When you submit the file it should have the exact filename: 
 
StepsTask1.c 
 
How it will be marked: 
 
 1. The ability to read in the file we give you without any errors: 5 marks 
2. The ability to read in another data file that you have not seen: 5 marks 
3. Printing out the requested rows: 5 marks 
 
 
 
  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
Part 2: Submission deadline Wednesday December 16th 2024 (by 2pm) 
Total marks available: 85 
 
You can submit the tasks as many times as you like up to and including the deadline 
 
Task 2: Analysing our data 
Difficulty level: SILVER 
 
Task 2 marks: 30 
 
Following on from your initial program, you now need to expand your initial program to add some features 
to analyse the data and help us understand what the data means. 
 
Following good programming practice, you should split your program functionality into two files: 
 
FitnessDataStruct.h – a header file containing the struct typedef and any helper functions you want 
 
StepCounter.c – a program that contains the code and functions to solve the requested tasks 
 
The program should provide a simple menu system and ask the user to select from the following options and 
an option to quit. 
 
A: Specify the filename to be imported (we will give you some additional files to test with). This should have 
some error checking so that the program can cope with an incorrect filename and a file that is of an 
unexpected format. 
B: Display the total number of records in the file 
C: Find the date and time of the timeslot with the fewest steps 
D: Find the data and time of the timeslot with the largest number of steps 
E: Find the mean step count of all the records in the file 
F: Find the longest continuous period where the step count is above 500 steps 
 
These should be printed out exactly as below: 
 
Option Example output 
A Input filename: 
B Total records: 229 
C Fewest steps: 2024-09-01 14:20 
D Largest steps: 2024-09-01 18:00 
E Mean step count: 427 
F Longest period start: 2024-09-01 14:20 
Longest period end: 2024-09-01 18:00 
 
How it will be marked: 
1. Providing a menu system providing options A-F and Quit: 5 marks 
2. Successfully coping with an incorrect filename: 4 marks 
3. Displaying the total number of records: 4 marks 
4. Date and time of fewest steps: 4 marks  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING
 
5. Date and time of largest steps:
 
 
 
 
 4 marks
 
6. Mean step count:
 
 
 
 
 
 
 4 marks
 
7. Longest continuous period:
 
 
 
 
 5 marks
 
  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
Task 3: Outputting sorted data 
Difficulty level: SILVER 
 
Task 3 marks: 15 
 
This task requires you to write a utility program to output the data file sorted by descending order of step 
count (so the row with the highest step count should be at the top) in tab separated values (tsv) format. 
 
A .tsv file differs slightly from a .csv in that the delimiter isn’t a comma (,) but a tab character. This has the 
special code \t 
 
You won’t see this if printed on the screen, it will just look like a few spaces between the values. 
 
You will be supplied with a template file with the same tokeniseRecord helper function you used before. 
 
Your program should: 
 
 1. Provide a menu option to specify a filename, using the prompt: 
Enter Filename: 
2. Process the data file (read in and sort). It should be able to cope with an incorrect filename and to 
give an appropriate error message if the file is not in the correct format 
3. Write out the sorted data file with the same filename (but with the file extension .tsv). The record 
with the highest step count should be at the top and the record with the smallest step count should 
be at the bottom. You will need to think how to deal with any records where the step counts are the 
same. 
 
If the input file is: 
mydata.csv 
 
The output file will be: 
mydata.tsv 
 
 
How it will be marked: 
1. Providing the menu option and coping with an incorrect filename: 5 marks 
2. Coping with an incorrectly formatted file (the fields in the wrong order): 5 marks 
3. Creating an output file in the correct format: 5 marks 
  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
Task 4: Simulating a 3-axis accelerometer for a step counter 
Difficulty level: GOLD 
 
This is an extension “stretch and challenge” task. We do not expect that all students will be able to 
complete it. 
 
Task 4 marks: 25 
 
Your task is to explore how a 3-axis accelerometer works and write a C program that will generate simulated 
data on all three axes for a 5 minute period. You’ll need to decide what axis or combination could be used to 
represent the steps. 
 
Your program should provide some mechanism to allow this value to be accessed or downloaded. 
 
This task will be assessed through a demonstration and short question and answer session with one of the 
lecturers or teaching assistants. 
 
You will need to book a slot to do this face-to-face or alternatively you may record a short (maximum 5-
minute) private Youku video and let us have the link by the final submission date. 
 
How it will be marked: 
1. Describing how you have looked at the data from the 3 axes and decided what might represent a step 
count (your experimental approach): 10 marks 
2. Writing and testing a C program that generates the step data for 5 minutes: 10 marks 
3. Providing some mechanism to download or access the number of steps: 5 marks 
  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
Task 5: Understanding code quality 
Difficulty level: BRONZE 
 
Task 3 marks: 15 
 
For this task you will need to complete the multiple choice quiz in Class. You will only get one chance at this. 
 
It has 15 questions related to good programming practice. Once you start you must complete the quiz within 
45 minutes. 
 
You can refer to any materials you like but it should be your own work. 
 
How it will be marked: 
 
Each of the 15 questions is worth 1 mark.  
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 
This assignment tests the Learning Objectives for this module: 
 
Marks and feedback will be returned to you approximately three working weeks after the final submission 
date. 
 
The passing mark for the assessment is 40% and this can be gained from any task or combination of tasks. 
 
5. Presentation and referencing 
You should produce working and tested C programs, uploaded to Gradescope with plenty of comments to 
explain your work. We also expect you to use meaningful variable names and for code to be indented to 
make it readable. 
 
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 
 
If you used ChatGPT, the tell us the prompt you used: 
 
// I based this on a discussion with ChatGPT 
// Prompt: Explain how to import a CSV file in C 
 
6. Submission requirements 
All code should be uploaded to the submission points in Gradescope (we will explain fully how to do this in 
our sessions). 
 
7. Academic misconduct and plagiarism 
Leeds students are part of an academic community that shares ideas and develops new ones. 
  
UNIVERSITY OF LEEDS | SCHOOL OF COMPUTING 
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 Description Marks available 
Part ** task 1 Importing a file into an array of structs and printing first two rows 15 
Part 2- task 2 Analysing our data 30 
Part 2- task 3 Outputting sorted data 15 
Part 2- task 4 Simulating a 3-axis accelerometer for a step counter 25 
Part 2- task 5 Multiple choice quiz 15 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp



 

掃一掃在手機打開當前頁
  • 上一篇:代做AnDe 、代寫Pokemon 程序設計
  • 下一篇:菲律賓9g工簽丟失如何補辦 辦理9G工簽麻煩嗎
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    国产成人一区二| 九九久久国产精品| 麻豆av一区二区三区| 欧美亚洲另类激情另类| 人妻熟女一二三区夜夜爱| 丁香六月激情婷婷| 手机看片日韩国产| 日本精品免费| 奇米精品一区二区三区| 欧美一级二级三级| 欧美在线欧美在线| 日本久久中文字幕| 日韩免费不卡av| 青青草精品毛片| 激情小说网站亚洲综合网| 黄www在线观看| 国产日本欧美一区二区三区在线| 国产综合色香蕉精品| 国产欧美日韩高清| 91精品国产自产91精品| 91成人免费视频| 久久婷婷国产综合尤物精品| 久久久免费精品| 久久久久久久中文| 久久天堂av综合合色| 91.com在线| 国产二区视频在线播放| 久久久久久中文字幕| 国产成人精品网站| 不卡av在线网站| 亚洲一区制服诱惑| 日韩五码在线观看| 国产在线精品一区二区中文| 国产欧美一区二区三区久久人妖| av一区二区三区免费观看| 国产v片免费观看| 国产精品久久久久久久久久小说 | 精品国产一区二区三区免费 | 久久全球大尺度高清视频| 久草热久草热线频97精品| 国产精品视频永久免费播放| 欧美激情视频三区| 日韩av一级大片| 精品视频导航| 国产成人高潮免费观看精品| 精品久久久久久无码中文野结衣| 亚洲精品中文字幕在线| 国内精品久久久久久影视8| 91久久国产精品| 国产精品黄页免费高清在线观看| 亚洲一区二区中文| 经典三级在线视频| 国产高清精品在线观看| 精品久久久久久亚洲| 青青草精品视频在线| 99精品一级欧美片免费播放| 国产精品嫩草视频| 日韩**中文字幕毛片| 国产欧美婷婷中文| 久久精品视频va| 日本欧美一级片| 国产日韩一区欧美| 国产精品视频精品| 日本在线精品视频| www.国产二区| 国产99午夜精品一区二区三区| 青青草影院在线观看| 91成人综合网| 一区二区三区四区视频在线观看| 欧美牲交a欧美牲交| 国产高清在线不卡| 中文字幕乱码一区二区三区| 国内揄拍国内精品| 日韩在线观看免费av| 日韩中文字幕三区| 91久久伊人青青碰碰婷婷| 国产精品久久九九| 国模视频一区二区| 国产精品美女视频网站| 欧美一区在线直播| 日韩亚洲成人av在线| 日韩a在线播放| 114国产精品久久免费观看| 一卡二卡三卡视频| 高清国语自产拍免费一区二区三区| 麻豆乱码国产一区二区三区| 欧美 日本 亚洲| 久久精品国产96久久久香蕉| 日韩精品久久一区二区三区| 久久久亚洲综合网站| 日韩av电影在线免费播放| 99久久精品免费看国产四区| 久久久久国产精品免费网站| 国产女精品视频网站免费| 欧美激情一区二区三区高清视频| 国产日韩欧美视频| 欧美激情伊人电影| 99久久国产宗和精品1上映| 亚洲精品天堂成人片av在线播放| 91九色在线观看| 日韩在线第三页| 久久久久久久久四区三区| 欧美尤物巨大精品爽| 久久久精品网站| 麻豆一区二区三区在线观看| 欧美成人午夜剧场免费观看| 国产一级特黄a大片99| 精品视频免费观看| 欧美激情亚洲自拍| 99久久激情视频| 亚洲wwwav| 久久精品日韩| 欧美精品中文字幕一区二区| 国产精品久久久久久久久久ktv | 成人毛片100部免费看| 日韩精品 欧美| 久久精品国产第一区二区三区最新章节| 国产成人精品视频在线观看| 国产精品视频一区二区三区经| 欧美日韩xxxxx| 色综合久久88| 国模精品视频一区二区三区| 日韩精品最新在线观看| 一本久道久久综合狠狠爱亚洲精品| 欧美专区国产专区| 品久久久久久久久久96高清| 欧美在线一区视频| 免费h精品视频在线播放| 国产成人激情小视频| 国产精品成人一区二区三区| 色欲av无码一区二区人妻| 欧美日本亚洲| 97人人模人人爽视频一区二区| 国产精品影片在线观看| 国产小视频免费| 草b视频在线观看| 久久成年人视频| 日本久久久网站| 日韩在线视频线视频免费网站| 国产成人精品视| 欧美极品日韩| 久久天天躁狠狠躁夜夜躁| 欧美一二三视频| 91精品国产网站| 无码内射中文字幕岛国片 | 国产精品第12页| 国产欧美日韩专区发布| 综合一区中文字幕| 久久久久欧美| 99热久久这里只有精品| 虎白女粉嫩尤物福利视频| 午夜精品亚洲一区二区三区嫩草| 国产精品久久一| 国产精品三级久久久久久电影| 不卡中文字幕在线| 麻豆中文字幕在线观看| 日韩免费av一区二区三区| 一本久久a久久精品vr综合 | 久久综合伊人77777尤物| 国产精品av免费在线观看| 国产一区二区不卡视频在线观看| 色播亚洲视频在线观看| 伊人久久在线观看| 国产精品成人观看视频国产奇米| 久久久精彩视频| 97人人香蕉| 成人国产精品日本在线| 国产在线精品二区| 免费一级特黄毛片| 欧美日韩一级在线| 日韩精品一区二区三区色欲av| 午夜伦理精品一区| 亚洲视频欧美在线| 中文字幕一区二区三区有限公司 | 欧洲精品一区二区三区久久| 午夜精品久久久久久久99热| 激情五月六月婷婷| 人偷久久久久久久偷女厕| 视频一区亚洲| 亚州av一区二区| 亚洲精品日韩在线观看| 亚洲一区影院| 日韩一区二区高清视频| 欧美一区二区三区综合 | 日本精品一区二区三区在线| 熟妇人妻va精品中文字幕| 午夜精品久久久久久久久久久久| 亚洲人成77777| 一本久道久久综合| 亚洲最大av网站| 亚洲自偷自拍熟女另类| 亚洲欧美日韩精品在线| 日韩影院一区| 人人爽久久涩噜噜噜网站| 欧美日韩无遮挡| 精品婷婷色一区二区三区蜜桃| 国产日韩精品在线播放| 国产噜噜噜噜噜久久久久久久久| 国产原创欧美精品| 国内精品在线观看视频|