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

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

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

時間:2023-11-03  來源:合肥網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編程
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    精品www久久久久奶水| 天堂一区二区三区| 欧美xxxx综合视频| 欧美日韩国产成人在线观看| 日本高清久久天堂| 国产乱子伦精品视频| 久久色在线播放| 亚洲第一页在线视频| 欧美在线免费视频| 爱福利视频一区二区| 国产精品男女猛烈高潮激情| 日韩av成人在线观看| 国产乱码精品一区二区三区中文| 久久免费视频这里只有精品| 久久久精品在线观看| 日本久久久久久久久| av一区二区三区免费观看| 国产精品美女在线观看| 日本一区高清在线视频| 国产精品香蕉av| 久久深夜福利免费观看| 日本一区视频在线观看| 91久久在线视频| 欧美成人午夜剧场免费观看| 欧美中日韩一区二区三区| 91av中文字幕| 一区二区成人国产精品| 国产一区二区三区黄| 国产精品免费一区二区三区观看| 亚洲午夜精品福利| 国产在线一区二区三区| 国产成人免费av| 热久久这里只有精品| 久久网站免费视频| 欧美大片欧美激情性色a∨久久 | 成人精品小视频| 欧美人交a欧美精品| 国产偷久久久精品专区| 国产精品露出视频| 国内精品伊人久久| 久久精品视频免费播放| 日韩一级免费在线观看| 久久久久久中文字幕| 日韩美女在线观看| 日韩视频第一页| 日韩videos| 久久精品无码中文字幕| 日本一区二区三区免费看| 国产高清视频一区三区| 日韩精品在线中文字幕| 97精品视频在线播放| 亚洲精品一区二| 91麻豆国产语对白在线观看| 五月天国产一区| 久久久久久久av| 欧美亚洲一级片| 日韩在线高清视频| 免费在线观看的毛片| 国产精品高潮粉嫩av| 国产精品香蕉av| 亚洲尤物视频网| 国产成人在线播放| 欧美日韩亚洲一二三| 国产精品久久久久国产a级| 国产欧美日韩视频一区二区三区| 国产精品久久久久久久久久尿 | 免费观看精品视频| 国产精品美女av| 97精品久久久中文字幕免费| 国产精品欧美在线| 国产精品视频二| 午夜精品一区二区三区四区 | 国产成人精品日本亚洲| 亚洲中文字幕无码中文字| 日韩欧美一级在线| 久久久久久网站| 欧美一区二区三区在线播放| 欧美亚州在线观看| xvideos亚洲| 国产精品电影一区| 中文字幕中文字幕在线中一区高清| 99三级在线| 日本久久中文字幕| 国产精品一区二区久久| 亚洲免费在线精品一区| 久久这里只有精品视频首页| 欧美精品一区二区三区在线四季| 日韩在线观看免费高清| 热久久精品国产| 日韩最新av在线| 黄页网站在线观看视频| 亚洲自拍av在线| 国产精品黄视频| 久久人人爽国产| 女同一区二区| 日韩中字在线观看| 久久久久久成人| 国产精品久久久999| 国产福利成人在线| 97精品国产91久久久久久| 国产日韩在线看片| 精品99在线视频| 人人妻人人澡人人爽欧美一区双| 一区国产精品| 久久成人亚洲精品| 久久久久www| 九九九热999| 久久手机视频| 99热在线这里只有精品| 国产一区二区自拍| 欧美亚洲视频在线看网址| 色噜噜狠狠色综合网| 亚洲精品9999| 亚洲一区二区中文| 亚洲图色在线| 亚洲欧洲国产日韩精品| 欧美激情亚洲激情| 国产99久久精品一区二区永久免费 | 国产精品自拍网| 国产中文一区二区| 欧美在线观看黄| 日韩免费在线播放| 日韩欧美不卡在线| 日韩av免费看网站| 真实国产乱子伦对白视频| 欧美另类69精品久久久久9999| 国产精品视频导航| 国产精品情侣自拍| 国产精品视频1区| 国产精品乱子乱xxxx| 国产精品视频网站| 久青草国产97香蕉在线视频| 久久久精品国产| 国产精品私拍pans大尺度在线| 日韩在线视频中文字幕| 国产xxx69麻豆国语对白| 国产h视频在线播放| 国产成人亚洲综合青青| 色偷偷噜噜噜亚洲男人的天堂| 日韩视频免费在线| 国产精品久久成人免费观看| 国产精品久久国产精品| 精品国产乱码久久久久久蜜柚 | 日韩尤物视频| 日韩精品―中文字幕| 欧美专区第一页| 激情视频综合网| 欧美日韩精品免费在线观看视频| 欧美中文字幕在线| 国模吧一区二区| 国产精品亚洲一区| 久久久免费在线观看| 色偷偷av一区二区三区| 国产精品久久久| 亚洲综合精品一区二区| 亚洲高清精品中出| 日本精品免费一区二区三区| 欧美日本韩国在线| 国产狼人综合免费视频| 91九色精品视频| 国产成人看片| 国产aⅴ精品一区二区三区黄| 国产99视频精品免费视频36| 岛国一区二区三区高清视频| 欧美在线视频一区二区三区| 国内免费久久久久久久久久久| 高清欧美性猛交xxxx| 国产成人精品免高潮在线观看 | 亚洲精品蜜桃久久久久久| 日韩色妇久久av| 国产一区二区三区色淫影院 | 国产精品免费一区| 一区二区三区四区欧美| 日本精品视频在线播放| 黄色一级片国产| 97色在线播放视频| 精品国产欧美一区二区五十路| 精品国产一区二区三区四区vr| 午夜精品视频在线| 狠狠色综合网站久久久久久久| 99视频精品全部免费看| 久久九九亚洲综合 | 韩国精品一区二区三区六区色诱| 波多野结衣综合网| 久久天天躁狠狠躁夜夜爽蜜月| 亚洲自拍欧美另类| 欧美成人综合一区| 国产精品av网站| 久久久av一区| 成人做爰www免费看视频网站| 欧美日韩国产综合视频在线| 国产精品一区二区免费看| 日韩中文字幕不卡视频| 中文字幕日韩精品久久| 欧美区高清在线| 国产黄色片免费在线观看| 一区二区在线观看网站| 免费在线观看一区二区| 国产黄色片免费在线观看| 中文字幕不卡每日更新1区2区|