Posts by TojaraProg • 66 points
4 posts
-
0
votes1
answer20
viewsA: Assign a float in main() to a struct inside another struct
Looking at the problem, it looks like you are trying to set a float for each element of the.room array, with each element being a struct (not a float). The call of each cadastro.sala[i] is a struct,…
-
1
votes4
answers708
viewsA: Conversion of interface list into object list: (List<Interface> in List<Object>)
I think I understand what you want. You want a Student type class containing a list of Iobjetobase interfaces to return a list of Student type objects. There are several ways to do this, and even…
-
2
votes1
answer234
viewsA: Problem implementing a chained list - list insertion
Let’s go in pieces. First, in print_names the use of for in this case is a bad practice of programming, because you do not know the number of elements that will have the chain list. For this case,…
canswered TojaraProg 66 -
2
votes2
answers726
viewsA: How to read numbers from a txt file in C#?
I understand your logic. You want to store text value information for three-element vectors. I just don’t understand if you want to do this to generate a single vector or want to store multiple…