0
helpp
im studying C++ programming in the university and i have a project can someone help me?
14 ответов
+ 1
Can you provide more details?
+ 1
Write a program to grade an n -question multiple-choice exam (for n between 5 and 50)
and provide feedback about the most frequently missed questions.
Your program will take data from a file. The first input line contains the number of
students, the second input line contains the number questions in the exam followed by
a space and then an n -character string of the correct answers. Then each following
input line contains student name, student ID followed by a space and then that
student’s answers.
Your program is to produce an output containing the answer key, each student’s ID and
each student’s score as a percentage and then information about how many students
missed each question.
0
How could anyone help you if you don't ask a question which can be answered? You should give some informations about your problem.
0
here short sample input and output
0
input file
3
5 dbbac
Ali 201611000 dabac
Mohammed 2017077271 dcbdc
Hamad 201720202 dbbac
0
Output file
Exam Report
Questions : 1 2 3 4 5
Answers : d b b a c
Name ID Score(%)
Ali 201611000 80 Mohamed 2017077271 60
Hamad 201620202 80
Question 1 2 3 4 5
Missed by 0 2 0 1 0
class average 80.00
0
please can someone helps me😭
0
Did you try anything yet? Doesn't really help your learning process if I just give you a solution to copy&paste.
0
yes i tried but i have some problems in Files and functions
0
Post the code you tried and the errors you got and we’ll try to help you!
0
Hi how can i read numbers from a file? Help in C++
0
thank you, how can i read characters from a file