Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define RESET "\033[0m"
- #define BLACK "\033[30m" /* Black */
- #define RED "\033[31m" /* Red */
- #define GREEN "\033[32m" /* Green */
- #define YELLOW "\033[33m" /* Yellow */
- #define BLUE "\033[34m" /* Blue */
- #define MAGENTA "\033[35m" /* Magenta */
- #define CYAN "\033[36m" /* Cyan */
- #define WHITE "\033[37m" /* White */
- #define BOLDBLACK "\033[1m\033[30m" /* Bold Black */
- #define BOLDRED "\033[1m\033[31m" /* Bold Red */
- #define BOLDGREEN "\033[1m\033[32m" /* Bold Green */
- #define BOLDYELLOW "\033[1m\033[33m" /* Bold Yellow */
- #define BOLDBLUE "\033[1m\033[34m" /* Bold Blue */
- #define BOLDMAGENTA "\033[1m\033[35m" /* Bold Magenta */
- #define BOLDCYAN "\033[1m\033[36m" /* Bold Cyan */
- #define BOLDWHITE "\033[1m\033[37m" /* Bold White */
- #include <assert.h>
- #include <stdio.h>
- #include <iostream>
- #include <stdlib.h>
- using namespace std;
- int
- main ()
- {
- int codice, i, j, r, l, temp;
- int iterazioni = 0;
- int giri = 0;
- int k = 0;
- int p = 0;
- FILE *faro = fopen ("faretti.txt", "r");
- if (!faro)
- {
- printf ("Couldn't open/find the txt file");
- exit (1);
- }
- while (fscanf (faro, "%d", &l) != EOF)
- {
- iterazioni++;
- }
- int Array[600][1];
- giri = iterazioni / 2;
- if (iterazioni%2!=0){
- cout << RED << "Mancano delle coordinate" << RESET << endl;
- return 0;
- }
- for (int i = 0; i < giri; i++){
- cout << "------------------" << endl;
- cout << RED << "Ciclo N# : " << i << RESET << endl;
- for (int j = 0; j < 2; j++){
- fscanf (faro, "%d", &Array[i][j]);
- fscanf (faro, "%d", &temp);
- cout << "------------------" << endl;
- cout << "Valore i : [ " << i << " ]" << endl;
- cout << "Valore j : [ " << j << " ]" << endl;
- cout << "------------------" << endl;
- cout << GREEN << "Valore [" << i << "]" << "[" << j << "]: {" <<Array[i][j] << "}" << RESET << endl;
- cout << CYAN << "Val Salvato: [" <<temp << "]" << RESET << endl;
- }
- }
- fclose (faro);
- return 0;
- }
Add Comment
Please, Sign In to add comment