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

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

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

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



ACS130 Introduction to Systems Engineering and Software
C Programming Assignment Matrices
Tara Baldacchino (t.baldacchino@sheffield.ac.uk)
Assignment weighting: 15% of module mark
Assignment released: Friday 8 March (Semester 2, week 5)
Assignment due: 11.59pm Thursday 21 March (week 7)
Submission: You must submit your .c file to ACS130 Blackboard assignment dropbox
entitled. “C Program: Matrices” in the Assessment section. Do not copy your .c file into any
other format. Do not submit executable files to the assignment dropbox. Multiple
submissions to the Blackboard assignment dropbox are allowed up to the deadline.
After the deadline, your last version is the version that will be marked (you cannot
resubmit after the deadline).
You must make sure that your code runs on Codeblocks before submitting. Any code that
won’t run properly, will be marked as is which could mean you could get a 0. It is your
responsibility to submit a .c code that compiles and runs.

You will receive feedback via a rubric and a mark for your code. Provisional marks may change
as a result of unfair means and/or late submissions. I will then go over a sample solution during
a session so that you can get feedback on the code.
Assignment briefing:
This assignment will assess your ability to solve a problem using these C programming
elements: repetition (e.g. for.. or while..), selection (if), structures, two dimensional arrays,
pointers, I/O and functions. Your task is to write a C program to:
• **Allow the user to input the size of a matrix. The contents of the matrix are read in
from a file, which has a list of 100 float numbers (numbers in the file are <100.00). If
the matrix is 3x2, then the first 2 numbers in the list form the first row, the second 2
numbers in the list form the second row …and so on).
• The matrix must have between 1 and 10 columns and between 1 and 10 rows. The
matrix size (rows x columns) is determined by the user, and this information is stored
in a struct matrix (specified below) in members int nrows and int ncols.
• The contents of the matrix will also be stored in the struct matrix in member
float mValues[10][10].
• Calculate the determinant: Ask the user to choose the row and column to form a 2x2
matrix, which is a subset of the original matrix. The 2x2 matrix contents must be stored
in a new struct matrix variable, along with its size. The determinant of this matrix is
then calculated. (See sample run of program below).
• Find the inverse of the 2x2 matrix: The inverse matrix contents must be stored in a
new struct matrix variable, along with its size. ##
• Loop from ** to ##, but allow the user some way of exiting the loop and stopping the
program
The program shall define a structure to hold information about the matrices as follows (only
define one structure, but declare 3 structure variables: one for the original matrix, one for the
2x2 sub matrix and one for the inverse):
struct matrix
{
 float mValues[10][10]; // to hold the values in the matrix, up to 10 rows x 10 columns
 int nrows; // to hold the number of rows used in mValues
 int ncols; // to hold the number of columns used in mValues
};
Notes (refer to mark scheme for more details):
1. The array that holds the matrix values has maximum size 10x10, which means that
the program must be able to work with any array up to that size. For this program, the
minimum array size allowed is 1 x 1.
2. A sample .txt file with 100 numbers is available on ACS130 Blackboard. Please note
that you will need to test your code thoroughly to cover every possible scenario (eg to
get a det=0). I will be using a different test data to test your program.
3. The program must display to the screen the contents of each matrix in the program,
after it has been input or created.
4. The program must allow both square and non-square matrices, e.g. 3 x 3 is square, 3
x 4 is not square.
5. You must program defensively. The program must guard against incorrect entries
for rows and columns at every possible instance. The program must ask the user to
enter again if incorrect. You also need to check if the input file is available. You also
need to take into consideration things like: possibility of generating a 2x2 matrix
(because the input matrix is smaller, eg, 2x1), having a 1x1 matrix, and finding the
inverse when the determinant is 0 or does not exist.
6. You cannot use global variables. You will get 0 for the whole code. #define can
be used (and encouraged).
7. You cannot use while(1) loops. You will get 0 for the whole code. You can use a
while(OK) loop where OK is a variable that is, for eg, 0 or 1
8. You cannot use break (unless it is part of a switch case).
9. You cannot use goto, continue, jump.
10. The program must include main( ) and the following 4 functions. The function
prototypes must be as follows:
void matrixInput(struct matrix *mat, FILE *in); /* to input the size (number
of rows and columns) of the matrix, and read in the values from the file (using fscanf) into the
2D array that makes up the matrix NOTE, the file opening and checking occurs in main(), eg
FILE *fin; fin=fopen(“ xyz.txt”,’r’); then use fin in the function call. */
void matrixDisplay(struct matrix mat); /* to display the values in the 2D array
that makes up the matrix*/
float matrixDeterminant(struct matrix m1, struct matrix *m2, int
*check); /* to form sub matrix m2 from m1, find the determinant of m2, where m2 is a 2x2
subset matrix of m1; returns determinant to main. If determinant is not equal to 0, check =1; if
determinant=0, check=2, otherwise check is 0 (eg when size of matrix <2x2). check variable
is needed for the inverse. This function does not display either m1 or m2. */
void matrixInverse(struct matrix m2, float determinant, struct matrix
*m3); /* to find the inverse (if possible) of the 2x2 matrix; this function does not display either
m2 or m3. */
11. You are free to add extra functions, for example, for out-of-range checks (for rows and
columns), or any other defensive programming required, but you must have the 4
functions listed above.
Figure 1: A sample screenshot of the expected output from this code.
Marking criteria: The following table lists the components/marking criteria of the assignment
and the marks available for each component.
Component Marks
Criteria A:
Have global variables been used? OR
Have while(1) loops been used? OR
Have goto, continue, jump, break (unless in a switch case) been used?
Yes/no
If YES, then give 0 for
whole program.
Criteria B:
• Does the program use the function prototypes as instructed, and are the
parameters used properly within the functions?
void matrixInput(struct matrix *mat, FILE *in);
void matrixDisplay(struct matrix mat);
float matrixDeterminant(struct matrix m1, struct matrix *m2, int *check);
void matrixInverse(struct matrix m, float determinant, struct matrix *m3);
Yes/no
If NO, then 8 mark
penalty for whole
program.
Criteria 1: Program layout and readability including things like how clear is the
code and does it have comments, including header comments, meaningful
variable names, and indentation?

 /1
Criteria 2: Inputting and displaying matrix:
• Does the program allow the user to enter number of rows and columns, and
reads numbers from the file into appropriate array in struct?
• Does the program display the correct contents of each matrix to the screen?
Is the display in a sensible format?

 /2
Criteria 3: Determinant of matrix>=2x2
• Does the program find the correct determinant when original matrix >=2x2?
Variable check= 1
 /2
Criteria 4: Inverse of matrix>=2x2
• Does the program find the correct inverse when the determinant exists and
is not equal to 0 (Variable check= 1)?
 /2
Criteria 5: Defensive Programming
• Does it check for the file?
• Does the code guard against incorrect entries at every instance: rows & cols?
 /2
Criteria 6: Defensive Programming Determinant
• Determinant when original matrix < 2x2 (Variable check= 0), or determinant
is 0 (Variable check= 2)
 /2
Criteria 7: Defensive Programming Inverse
• Inverse for when determinant is 0 or does not exist. /1
Criteria 8: Original Matrix 1x1
• Correct determinant and inverse of 1x1 matrix.
 /1
Criteria 9: Details
• Looping through the program until user decides to quit.
• Clarity of instructions printed to the screen.
 /2
Total /15
Penalties for late submission: 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.
How you should work: This is an individual assignment, and it must be wholly your own work. You
must not copy algorithms or code for this assignment from any other source. You must not show anyone
else your code, nor must you look at anyone else’s code, because if you do this is likely to result in
similarity in your algorithms and code. You can discuss concepts, but if discussion leads to similar code
this will be treated as an unfair means case. Please do not post assignment questions on Stack
Exchange or CSDN or anything similar. This constitutes unfair means.
Unfair means: The module leader will submit your C programs to a plagiarism checker. Any suspicions
of the use of unfair means will be investigated and may lead to penalties. See
https://www.sheffield.ac.uk/new-students/unfair-means for more information.
Extenuating circumstances: If you have medical or personal circumstances which cause you to be
unable to submit this assignment on time, please complete and submit an extenuating circumstances
form along with documentary evidence of the circumstances.
Help: This assignment briefing, the lectures and labs and the C online resources on your ACS130
reading list provide all the information that is required to complete this assignment. You need to decide
on the algorithm to solve this problem, subject to the instructions in the assignment briefing. You also
need to create and debug the C code to solve this problem. However if you need clarifications on the
assignment then please post a question on the ACS130 Blackboard discussion board. I will not
reply to assignment related emails unless the query is of a personal nature. The discussion board is an
opportunity for everyone to see the Q&A so that no one is disadvantaged.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:CEG5301代做、MATLAB編程語言代寫
  • 下一篇:代寫G1109 Machine Learning with Python
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    日本视频精品一区| 免费看黄色a级片| 免费影院在线观看一区| 国产乱肥老妇国产一区二| 国产精品丝袜久久久久久高清| 痴汉一区二区三区| 成人a免费视频| 欧美激情区在线播放| 美女黄毛**国产精品啪啪| 日韩中文字幕在线视频播放 | 日韩av色综合| 99电影在线观看| 欧美日韩福利在线观看| 精品一区久久久久久| 国产精品极品尤物在线观看| 男人天堂av片| 国产精品露脸av在线| 黄色一级片黄色| 国产精品美乳在线观看| 韩日午夜在线资源一区二区| 久久婷婷国产麻豆91天堂| 国产在线精品一区二区三区| 精品国产乱码久久久久久丨区2区| 免费不卡亚洲欧美| 国产精品成熟老女人| 国产女女做受ⅹxx高潮| 国产精品成人av性教育| 国产日韩在线观看av| 国产精品精品软件视频| 国产日韩欧美夫妻视频在线观看| 久久久久久国产精品美女| 粉嫩av一区二区三区免费观看| 伊人久久在线观看| 国产高清精品一区二区三区| 日本a级片在线播放| 国产精品丝袜久久久久久不卡 | 国产专区精品视频| 欧美激情综合色综合啪啪五月| 成人欧美一区二区三区黑人| 亚洲xxxx做受欧美| 国产成人综合av| 欧美中文在线观看| 另类色图亚洲色图| www日韩在线观看| 日本亚洲导航| 国产精品久久综合av爱欲tv| 国产精品一区在线播放| 欧美一区二区三区在线播放| 色噜噜狠狠狠综合曰曰曰| 国内精品模特av私拍在线观看| 欧美日韩国产91| 国产高清av在线播放| 欧美日韩国产三区| 欧美精品激情在线观看| 国产成人亚洲精品| 好吊色欧美一区二区三区四区| 伊人久久在线观看| 色婷婷久久一区二区| 国产伦精品一区二区| 日本一本a高清免费不卡| 国产精品国产三级国产aⅴ9色 | 美女精品视频一区| 久久综合久久网| 国内精品久久久久| 欧美一区二区三区四区在线观看地址 | 亚洲一区三区电影在线观看| 久久久久久久激情视频| 红桃一区二区三区| 亚洲精品高清视频| 国产精品久久久久秋霞鲁丝| 99久久自偷自偷国产精品不卡 | 精品视频一区二区| 成人做爰www免费看视频网站| 国产精品久久久久久久久久久久午夜片| 草b视频在线观看| 欧美亚洲一级二级| 亚洲一区二区精品在线观看| 久久视频精品在线| 国产福利精品av综合导导航| 国产有码在线一区二区视频 | 91精品久久久久久久久久久| 精品欧美国产一区二区三区不卡| 亚洲精品日韩av| 国产精品成人免费电影| 久草一区二区| 成人国产精品久久久久久亚洲 | 日韩亚洲在线观看| 88国产精品欧美一区二区三区| 麻豆av一区二区| 人妻精品无码一区二区三区| 在线观看欧美一区| 国产精品久久久久久久久久免费| 国产成人av在线| 91久久在线视频| 国产伦理久久久| 激情内射人妻1区2区3区| 日本精品视频在线观看| 亚洲精品视频一二三| 久久av资源网站| 国产精品无码专区av在线播放 | 日本不卡视频在线播放| 午夜伦理精品一区| 久久福利视频网| 国产精品美女黄网| 久久精品中文字幕免费mv| 国产成人精品999| 91精品成人久久| 97激碰免费视频| av在线不卡一区| 成人中文字幕在线播放| 国产欧亚日韩视频| 国产一区二区三区免费不卡| 黄色a级片免费| 黄色99视频| 免费看欧美一级片| 免费看成人午夜电影| 国语自产精品视频在线看| 日韩人妻一区二区三区蜜桃视频| 午夜视频在线瓜伦| 午夜精品亚洲一区二区三区嫩草| 亚洲欧美国产一区二区| 亚洲欧美日韩精品综合在线观看| 亚洲专区国产精品| 亚洲欧洲精品在线观看| 亚洲乱码中文字幕久久孕妇黑人| 亚洲熟妇无码另类久久久| 亚洲一区二区三区加勒比| 亚洲自拍欧美色图| 亚洲www在线| 日本视频久久久| 欧美在线观看日本一区| 欧美亚洲黄色片| 欧美在线视频观看| 精品一区二区国产| 国产精品永久免费视频| 99在线视频免费观看| 91精品国产自产在线观看永久| 91av一区二区三区| 久久久久久欧美| 国产精品视频内| 精品国产一区二区三区麻豆免费观看完整版 | 久久久久久久久久久久久国产精品| 久草热久草热线频97精品| 日韩中文字幕在线看| 国产精品免费久久久久影院| 久热精品视频在线免费观看| 中文字幕无码不卡免费视频| 亚洲a在线观看| 欧美中文在线免费| 国产一级片91| 69久久夜色精品国产69| 久久久久久久久久久人体| 久久综合久久88| 伊人久久大香线蕉精品| 日韩av黄色网址| 激情久久av| www.欧美日本| 久久久久久久久久网| 久久亚洲私人国产精品va| 亚洲国产精品一区二区第四页av| 日韩国产精品一区二区三区| 免费毛片网站在线观看| 成人av在线不卡| 国产a级片网站| 国产精品吹潮在线观看| 亚洲第一在线综合在线| 欧美日韩系列| 成人av免费在线看| 精品国产美女在线| 久久久久成人精品| 人妻久久久一区二区三区| 国产乱子伦精品无码专区| 国产成人亚洲综合91| 欧美精品制服第一页| 日韩美女视频中文字幕| 国产欧美日韩中文字幕在线| 久久www免费人成精品| 国产精品美女免费视频| 亚洲a区在线视频| 国产日韩一区二区在线观看| 国产成人精品视频ⅴa片软件竹菊| 另类美女黄大片| 日本一区视频在线播放| 国产日韩中文字幕| 日韩在线视频播放| 一区二区日本伦理| 精品欧美一区二区久久久伦| 国产精品69av| 美女精品久久久| 欧美在线免费观看| 久久五月天婷婷| 在线视频一二三区| 欧洲精品在线播放| 97精品一区二区视频在线观看 | 久久精品xxx| 欧美日本精品在线| 欧美黄网在线观看| 久久免费成人精品视频| 欧美成aaa人片在线观看蜜臀| 日韩精品不卡|