C++ assignment help (not understanding) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

C++ assignment help (not understanding)

Hello I need help setting up this assignment in c++ Hello, i'm a bit stuck on this array files assignment especially with the array part I'll share my code right now, I explained it clearly, Since I'm having a hard time doing it. If you can give me an example of a code in c++ strictly want arrays no vectors I'm pretty sure getline and for loop https://code.sololearn.com/crDYz30bHVpJ/?ref=app

20th Apr 2021, 5:50 PM
boba
boba - avatar
9 Answers
+ 1
first, you didn't share your code, you just posted your assignment. The easiest you could do would be using an array of std::string then convert that to datatype for whatever arithmetic or any other operations you need to perform. here is an example of getting data from the txt files in an array of some sort. Beware that this is not a complete or exact or perfect solution: #include <iostream> #include <fstream> #include <string> #include <utility> std::string* readFiles(const std::string& filename) { std::ifstream ifs; ifs.open(filename); if (!ifs.is_open()) { return nullptr; } // get file size using std::ifstream or any other way or use a number that is enough to store everything std::string* arr = new std::string[15]; // this should be the size //ifs.read(reinterpret_cast<char*>(&arr[0]), 15); std::string line; int i = 0; while (std::getline(ifs, line) && i < 15) { arr[i++] = std::move(line); } ifs.close(); return arr; } int main() { std::string* arr = readFiles("files2.txt"); if (arr != nullptr) { // do stuffs for (int i = 0; i < 15; i++) { std::cout << arr[i] << '\n'; } delete[] arr; } return 0; }
20th Apr 2021, 6:52 PM
Flash
+ 1
I dont think I'm supposed to use vectors nor pointers since I'm at that beginner level
20th Apr 2021, 8:06 PM
boba
boba - avatar
+ 1
you read each line from the stream and you populate the array index with that. that’s all.
20th Apr 2021, 8:16 PM
Flash
0
Flash can you explain the start where it says std::string line i'm a bit lost but this seems like the move
20th Apr 2021, 7:01 PM
boba
boba - avatar
0
Flash, why should we use pointers, when we have containers like std::vector<>? You don't have to know size of file, and it's much easier to implement
20th Apr 2021, 8:00 PM
Michal Doruch
0
boba std::string is just regular string variable, std:: tells you that it belongs to std namespace. Same about std::cout etc
20th Apr 2021, 8:02 PM
Michal Doruch
0
“..want arrays no vectors..” Michał Doruch
20th Apr 2021, 8:05 PM
Flash
0
But can I get an explanation starting string line all the way to the end of the int main function i'm curious on how you approached this problem Flash
20th Apr 2021, 8:07 PM
boba
boba - avatar
0
I appreciate the help Flash ill send you my code on what I got so far a little later
20th Apr 2021, 10:07 PM
boba
boba - avatar