C ++ application the name "DataStructures", which uses a structure (struct) named "Student" of multiple data, with elements: | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

C ++ application the name "DataStructures", which uses a structure (struct) named "Student" of multiple data, with elements:

studentid: int type name: string type gender: char type (only accepts "m" or "f") stature: float type state: boolean type The application should have a menu (similar to the array exercise) with the following options: Structure filling Structure printing Test the application and correct the errors, before continuing with the following points. After the structure is finished and working, modify the application to use a data structure arrary. Modify the menu with the following options: Structure definition (how many elements will the structure type arrangement have) Filling of the structure type arrangement Structure type arrangement printing The application should ask how many elements the arrangement will have Fill and print the structure with 5 elements.

25th May 2021, 1:44 AM
Marcos P.
5 Answers
+ 6
So start learning the basics and don't except us to give direct codes.. we're not in a student-teacher bond or a ready made answer provider. We look for individuals who are in need to solve errors in codes, etc and for that we require a basic attempt to know where you are incorrect and missing the track.
25th May 2021, 2:57 AM
Aditya
Aditya - avatar
+ 2
Attempt please
25th May 2021, 2:01 AM
Aditya
Aditya - avatar
0
I don't have one because I don't even know how to start doing it, my attempts are wrong
25th May 2021, 2:16 AM
Marcos P.
0
Yes I did the program but it is in Spanish
25th May 2021, 3:01 AM
Marcos P.
0
#include <iostream> using namespace std; struct alumnos; int numero; char caracter, nombre[15]; float promedio, estatura; } alumno1={"147893",alejandro, 1.70}, alumno2={"524248"},mariano, 1.52}, return 0; This is a test but it still marks errors and I don't know how to correct them
25th May 2021, 3:07 AM
Marcos P.