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

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

ACS130代做、代寫C++語言編程

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


ACS130代做、代寫C++語言編程
ACS130 Introduction to Systems Engineering and Software
Individual C Programming Assignment 1

Assignment weighting: 10% of module mark
Assignment released: Wednesday 18 October (Semester 1, Week 4)
Assignment due: 11.59pm Monday 6 November (Semester 1, Week 7).
How to submit
The assignment must be submitted to Blackboard, at the link ACS130 > Assessment > C
Programming ACS130-001. You must upload you *.c file. There is a separate drop box for
ACSE and Aero students so please submit to the correct drop box. Please make sure you
submit your .c file and nothing else. If, when I download your program from Blackboard I
cannot run the file because it is not a .c file (or for any other reason), you will NOT be
marked.
You are allowed to submit multiple times before the deadline. Once the deadline has
passed, your latest submission is the one that is marked. You cannot resubmit after the
deadline.
Marking
I will mark your program. The attached mark sheet provides a guide to the areas on which
feedback will be provided. The rubric on Blackboard also provides a guide to the marks for
this assignment. You need to check that your code runs properly in Codeblocks because I will
be using the Codeblocks IDE to run your programs. It is your responsibility to check that your
code runs properly in Codeblocks. This applies to everyone including Mac users; you need to
make sure that your program runs on the Windows Codeblocks (I do not own a Mac).
How you should work
This is an individual assignment, and it must be wholly your own work. You should not
discuss a solution to this assignment with anyone else, and you should not work with anyone
else to produce a solution. I will check for collusion and plagiarism.
You must complete this assignment in your own time. You cannot ask for help on this
assignment from the GTAs in ACS130 C practice sessions.
Learning outcomes
In doing this assignment, you will demonstrate your ability to program in C to manipulate files,
output to the screen, implement the selection and repetition constructs, and manipulate
variables, as well as use functions.
Assignment briefing
Write a C program for the flowchart in Figure 1. The program accepts a line of characters,
which are written to a file. These characters are then processed to extract the number
characters only, from which an average is found. Additionally (not shown in the flowchart), you
need to add the following to your code:
• When reading the file, check if the file exists, and if the file does not exist then the
program needs to abort.
• Cater for the situation when no numbers are entered at the start, and so no average
can be calculated. The logic for this needs to be performed in the function
float mean(int sum, int N). This function does not have any printf
statements.
• Program your code to keep looping until the user decides to quit the code.
• Your program must have meaningful inline comments, as well as a detailed header
comment, and be well laid out and readable (good indentation).
Please note that there are a few restrictions you need to follow. These restrictions are
in place because otherwise you could just copy and paste code off the internet or even
get ChatGPT to do it for you.
• The only header file you may include is stdio.h, therefore you will not be allowed to
use pre-defined functions from any other header file. You will be penalised if you
use more functions defined in other header files (eg atoi() is not allowed since this
is defined in stdlib.h).
• You may not use arrays or strings (which will be covered later in this module). You
will be penalised if you use arrays or strings.
• You may not use pointers (covered in semester 2). You will be penalised if you use
pointers. NOTE: FILE *fIN (file pointer) is allowed.
• You may not use dynamic memory allocation such as malloc and calloc. You will be
penalised if you use dynamic memory allocation.
• You may not use goto/break/continue/jump etc. You will get 0 marks if you
use any of these.
• You may not use global variables. These are variables declared outside main. You
will be penalised if you use global variables. #define is allowed but not needed
for this program.
• When your program is marked, I will type in a range of characters to test your
program. You should test your program thoroughly before you submit it.
• Helpful tip 1: You need to think about how you are going to convert the numerical
characters into numbers in order to be able to find the sum. Use the ASCI table (see
www.ascii-code.com) and refer to details given verbally in the lecture. You are not
allowed to use the function int atoi() because this is in the stdlib.h library.
Figure 1: Flowchart for the code.
Marking Scheme for Software
Marking Criterion Mark
Does the code use:
• any other library other than stdio.h or
• arrays/strings/pointers/dynamic memory allocation
• global variables
• continue/break/goto/jump
50% penalty
Looking at the code
Program layout and readability including: is the code indented, does it have
inline comments and a detailed header comment?
 /1
Running the code, using a test input
Does the code do what is asked in this assignment briefing when tested? Read
line, print to file, read from file and print numbers to screen, calculate and print
sum, calculate and print number of occurrences of number characters and prints
mean. Are the calculations correct? (This step assumes numbers have been
entered at the start)
Does the code check for file and abort the program (with a suitable message) if
the file is not found?
Does the code use the function float mean(int sum, int N) to find the
mean, which gets printed from main()?
Does the code cater for no numbers entered at the start?
Does the code keep looping until the user requests to stop?

 /2


 /2
 /2
 /1
 /1
Output to screen
Is the output on the screen in a clear layout? /1
Total marks possible /10
Penalties for late submission: A late submission will be any assignment not submitted to Blackboard
by the deadline. Late submissions will incur the usual penalties of a 5% reduction in the mark for every
day (or part thereof) that the assignment is late and a mark of zero for submission more than five days
late.
Unfair means: You are permitted to view the resources on ACS130 Blackboard, C textbooks and C
programs published on the internet, for insight into C programming, but you are not permitted to copy
any code that you have not written to submit as your own work. Do not seek or accept help on this
assignment from any internet site or forum, including GenAI such as ChatGPT. Do not to work with any
other person on this assignment, and do not submit any other person’s algorithm or code as your own
work. Any suspicion of the use of unfair means will be investigated and may lead to penalties.
Provide references for any work that is used to inform the ideas for this assignment. See
https://www.sheffield.ac.uk/new-students/unfair-means for more information.
Extenuating Circumstances: If you have medical or serious personal circumstance which affects you
to submit this assignment on time or which may have affected your performance, please inform me,
and complete and submit an extenuating circumstances form along with documentary evidence of the
circumstances. See https://students.sheffield.ac.uk/extenuating-circumstances
Help: This assignment briefing and the lectures and resources on the ACS130 Blackboard course and
the training in C practice sessions provide most of the information that is required to complete this
assignment. Some additional and independent reading is needed for some parts of the assignment. If
you need clarifications on the assignment, then please post a question on the ACS130
Blackboard discussion board. The discussion board allows everyone the chance to view an answer
to a question, as well as the opportunity to contribute to the discussion. I will not reply to assignment
related questions via email.

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

掃一掃在手機打開當前頁
  • 上一篇:CSE 3430代寫、c/c++語言編程代做
  • 下一篇:SEHH2042代寫、代做Python,Java編程
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    97精品国产97久久久久久免费| 久久久精品有限公司| 97精品伊人久久久大香线蕉| 久久成人综合视频| 黄色91av| 色青青草原桃花久久综合| 日韩一区二区三区资源| 成人av资源在线播放| 欧美日本中文字幕| 国产一区二区久久久| 国产精品久久久久久久av大片 | 99精品国产一区二区| 欧美极品第一页| 国产欧美一区二区三区久久| 国产精品久久久久久久app| 欧美日韩一区二区三区在线视频| 久久大香伊蕉在人线观看热2| 成人做爰www免费看视频网站| 99久久久精品视频| 午夜精品久久久久久久99热浪潮| 97久久伊人激情网| 欧美一区二区三区四区在线观看地址| 国产精品18久久久久久首页狼| 亚洲精品国产精品国自产观看| 91九色视频在线| 天堂av一区二区| 日韩在线视频导航| 欧美日韩一区二区三区在线视频| 国产精品免费成人| 国产最新精品视频| 国产99久久久欧美黑人| 99热国产免费| 性视频1819p久久| 久久www免费人成精品| 日韩美女av在线免费观看| 北条麻妃一区二区三区中文字幕| 欧美国产二区| 欧美激情一级精品国产| 啊啊啊一区二区| 日韩av片免费在线观看| 久久久久久久成人| 国内免费久久久久久久久久久| 九九精品在线观看| 91国产美女视频| 欧美中文字幕第一页| 国产精品传媒毛片三区| av 日韩 人妻 黑人 综合 无码| 亚洲国产精品123| 色琪琪综合男人的天堂aⅴ视频| 国产中文字幕免费观看| 亚洲中文字幕无码中文字| 国产精品27p| 麻豆国产精品va在线观看不卡| 豆国产97在线| 日韩小视频在线播放| 国产精品久久久久9999| 91精品国产91久久久久久吃药| 日韩免费不卡av| 欧美日韩国产va另类| 久久久精彩视频| 国产一区自拍视频| 色狠狠久久av五月综合| 久久精品夜夜夜夜夜久久| 99视频精品全部免费看| 精品日本一区二区三区在线观看| 亚洲在线色站| 久久视频在线看| 91精品在线播放| 黄色国产精品视频| 天堂v在线视频| 欧美激情伊人电影| 久久久精品2019中文字幕神马| 波多野结衣久草一区| 韩国成人一区| 日韩av观看网址| 精品伦理一区二区三区| 久久久久资源| 国产精品亚洲二区在线观看| 欧美亚洲丝袜| 天天夜碰日日摸日日澡性色av| 久久婷婷国产麻豆91天堂| 国产成人一区二区三区电影| 国产欧美欧洲在线观看| 极品校花啪啪激情久久| 日本中文字幕一级片| 在线视频91| 国产精品第12页| 国产成人鲁鲁免费视频a| 91精品国产精品| 国产欧美日韩综合一区在线观看| 日韩精品无码一区二区三区| 亚洲aⅴ日韩av电影在线观看| 国产精品久久一区二区三区| 国产厕所精品在线观看| 91精品久久久久久久久中文字幕| 精品无人区一区二区三区竹菊| 欧美在线视频网站| 日本一区二区三区www| 一区中文字幕在线观看| 久久综合九色九九| 国产精品久久久久久av福利软件| 色青青草原桃花久久综合| 国产大片精品免费永久看nba| 91福利视频网| 97人人香蕉| 97福利一区二区| 啊啊啊一区二区| 国产情侣第一页| 国产一区二区三区高清视频| 国产专区一区二区三区| 精品视频在线观看一区| 国产在线久久久| 欧美日韩一区二| 欧美综合在线第二页| 日韩国产一区久久| 欧洲精品码一区二区三区免费看| 人妻av无码专区| 欧美日韩激情视频在线观看| 欧美又大又粗又长| 欧美日本亚洲| 红桃av在线播放| 国产自产在线视频| 黄色动漫在线免费看| 精品一区二区三区国产| 国产又大又长又粗又黄| 国产欧美日韩91| 99久久国产综合精品五月天喷水| 成人国产精品久久久| 97福利一区二区| 久久另类ts人妖一区二区| 久久综合色视频| 久久久久久久久久网| 国产mv免费观看入口亚洲| 久久久久久久久久久久久久国产| 久久久久一区二区三区| 久久久久久久久久久久久久一区| 久久久久久久久久久综合| 久久久久久久久久久av| 久久九九热免费视频| 国产精品大全| 最新不卡av| 熟女少妇精品一区二区| 欧美亚洲丝袜| 国产美女在线精品免费观看| 成人免费视频97| 久久青青草原| 国产成人精品优优av| 欧美成人一二三| 亚洲三区视频| 欧美中文在线观看国产| 国产色综合一区二区三区| 91精品国产91久久久久久最新| 国产不卡一区二区三区在线观看| 久久久精品久久久久| 精品综合久久久久久97| 三区精品视频观看| 黄色网页免费在线观看| 分分操这里只有精品| 久久青草福利网站| 国产精品少妇在线视频| 一本色道婷婷久久欧美| 日韩免费在线观看av| 国产人妖伪娘一区91| 久久精品国产精品青草色艺 | 日韩视频第一页| 国产精品极品在线| 亚欧洲精品在线视频免费观看| 欧美日韩免费观看一区| 阿v天堂2017| 国产精品美女主播在线观看纯欲 | 久久成人精品一区二区三区| 亚洲www永久成人夜色| 欧美一级二级三级| av免费观看久久| 国产精品美女无圣光视频| 午夜欧美大片免费观看| 秋霞无码一区二区| 97碰在线视频| 国产精品露脸自拍| 丁香六月激情婷婷| 国模精品一区二区三区| 久久久久国产精品熟女影院| 精品久久久久久久免费人妻| 日韩精品免费播放| 99久久综合狠狠综合久久止| 国产精品视频区| 日韩亚洲在线视频| 国产精品午夜一区二区欲梦| www.亚洲一区| 亚洲精品蜜桃久久久久久| 国产欧美一区二区视频| 久久99九九| 亚洲高清乱码| 国产乱码精品一区二区三区卡 | 国产精选一区二区| 国产精品高潮呻吟久久av无限| 日韩欧美一区二| 97精品国产97久久久久久粉红| 超碰日本道色综合久久综合| 欧美少妇一级片|