Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <fstream>
- #include <cstdlib>
- //------------
- char buf[100];
- int numberOfTasks;
- fstream plik;
- plik.open("100RANDOM.txt", ios::in);
- if(plik.good()) {
- plik.getline(buf, 6);
- numberOfTasks = atoi(buf);
- for(int i = 0 ; i < numberOfTasks; i++) {
- int machine1_task, machine2_task;
- plik.getline(buf, 10, ';');
- machine1_task = atoi(buf);
- plik.getline(buf, 10);
- machine2_task = atoi(buf);
- /*
- TU SOBIE ZROBISZ DODAWANIE DO JAKIEGOS OGOLNEGO CZEGOS
- ZEBY MIEC LISTE TYCH TASKOW DLA KAZDEJ MASZYNY I ICH CZASY
- */
- }
- while(!plik.eof()) {
- int pauseNumber, machineNumber, timeForPause, whenPauseStart;
- plik.getline(buf, 10, ';');
- pauseNumber = atoi(buf);
- plik.getline(buf, 10, ';');
- machineNumber = atoi(buf);
- plik.getline(buf, 10, ';');
- timeForPause = atoi(buf);
- plik.getline(buf, 10);
- whenPauseStart = atoi(buf);
- if(timeForPause == 0 && machineNumber == 0 && whenPauseStart == 0) break; // PO TO BO SIE TWORZY TEN LAMERSKI OSTATNI PUSTY WIERSZ
- /*
- TU SOBIE ZROBISZ DODAWANIE PRZERW DO JAKIEGOS
- CUDA CO BEDZIE JE PRZECHOWYWAC
- */
- }
- } else {
- cout << "Ups...Something went wrong.";
- }
- plik.close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement