日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

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流體
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
  • 豆包網頁版入口 Trae 目錄網 排行網

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        日韩欧中文字幕| 国产视频一区三区| 亚洲视频一二三四| 国产高清一级片| 亚洲欧美日本国产专区一区| 久久久精品福利| 日韩三区免费| 欧美三级免费观看| 一区二区不卡视频在线观看| 久久韩国免费视频| 91日韩欧美| 欧美一级在线观看| 91麻豆视频网站| 中文字幕第一页在线| 77777_亚洲午夜久久多人| 日韩国产亚洲欧美| 在线欧美日韩国产| 中文字幕日韩免费视频| 国产福利一区二区在线精品| 久久99蜜桃精品| 日韩国产一区| 国产69精品久久app免费版| 亚洲欧洲日产国码av系列天堂| 婷婷中文字幕一区三区| 日韩精品视频在线观看网址| 人成免费在线视频| 91精品国产综合久久蜜臀| 不卡一区二区三区视频| 日韩精品视频在线| 午夜少妇久久久久久久久| 国产小视频在线观看| 国产欧美日韩精品高清二区综合区| 日韩一级二级三级| 国产福利在线播放| 精品中文在线| 久久人人精品| 国产免费电影网站入口| 欧美亚洲国产免费| 欧美日韩午夜在线| 日韩欧美色综合网站| 日韩三级视频在线| 欧美日韩国产不卡在线看| 51精品免费网站| 一区二区精品免费| 亚洲高清在线免费| 一区二区高清视频| 日韩色在线观看| 一本久久a久久精品亚洲| 久久夜色精品国产噜噜亚洲av| 99视频精品全国免费| 亚洲羞羞网站| 亚洲欧美小说国产图片| 亚洲免费精品| 亚洲 欧美综合在线网络| 91精品国产自产在线观看永久∴| 久久99久久久久久久噜噜| 日韩中文欧美| 欧美日韩中文字幕综合视频| 亚洲综合日韩中文字幕v在线| 日韩在线中文字幕| 亚洲一区资源| 久久中文免费视频| 免费国产h视频在线观看86| 日韩国产亚洲欧美| 国产三级在线播放| 国产欧美高清在线| 日韩手机在线观看视频| 国产一级免费在线观看| 国产黄色在线网站| 日韩欧美在线影院| 日韩欧美亚洲日产国| 不卡一二三区| 老司机久久99久久精品播放免费| 欧美日韩综合视频网址| 国产三级在线播放| 国产视频aaa| 欧美激情一区二区在线| 日韩欧美高清在线| 国自产拍在线网站网址视频| 精品日韩视频| 亚洲一区二区三区精品中文字幕| a视频免费看| 中文官网资源新版中文第二页在线观看| 日韩欧美在线综合| 欧美日韩精品免费在线观看视频| 国产欧美日韩不卡免费| 午夜一区二区三区免费| 日韩欧美中文字幕公布| 日韩精品在线免费观看| 在线亚洲免费| 日韩欧美一卡二卡| 国产欧美日韩精品在线观看| 美女尤物久久精品| 黄色一区二区在线观看| 国产激情在线| 中文网丁香综合网| 国产欧美日韩久久| 国产高清精品二区| 亚洲黄色片在线观看| 久久福利视频一区二区| 蜜桃精品视频| wwwav在线播放| 精品调教chinesegay| 久久精品卡一| 国产中文在线| 国产区高清在线| 日韩亚洲一区在线| 精品欧美不卡一区二区在线观看| 中文字幕第一页在线播放| 久久人人88| 精品人妻一区二区三区视频| 国产激情在线观看| 99中文字幕一区| 久久99精品国产| 日本精品福利视频| 日韩在线观看视频一区二区| 中文字幕第一页在线| 欧美午夜影院在线视频| 亚洲大片免费看| 欧美日韩亚洲综合| 日韩在线欧美| 日韩不卡中文字幕| 日韩视频精品在线观看| 91精品国产综合久久精品| 一区免费在线| 精品免费视频| 国产日韩中文字幕| 91精品国产自产| 精品国产99久久久久久| 影音先锋一区二区资源站| 亚洲一区中文| 日韩中文字幕网| 国产一级粉嫩xxxx| 日韩.欧美.亚洲| 伊人永久在线| 黄色一区二区在线| 在线观看国产一级片| 欧美三级在线看| 国产九九在线| 91精品国产全国免费观看| 日韩在线精品| 日韩视频专区| 国产日韩av一区| 日韩福利视频导航| 九色蝌蚪视频在线| 国产一级片播放| 免费在线视频一级不卡| 黄污视频在线看| 91精品国产免费| www.中文字幕在线| 九色蝌蚪视频在线| 大香一本蕉伊线亚洲网| а√天堂8资源中文在线| 综合图区亚洲白拍在线| 亚洲精品欧美二区三区中文字幕| 亚洲综合在线中文字幕| 日韩视频中文字幕| 久久香蕉av| 亚洲一区精品在线| 91精品久久久久久久91蜜桃| 免费高清在线一区| а√天堂中文在线资源8| 国产在线精品日韩| 欧美日韩国产一级片|