Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. void naplnenizesouboru(ifstream &soubor, int radky, double** matice, double** matice1)
  2. {
  3.     /*string pom;
  4.     double cislo;
  5.     for (unsigned int i = 0; i < radky; i++)
  6.     {
  7.         for (unsigned int j = 0; j < radky+1; j++)
  8.         {
  9.             getline(soubor, pom, ' ');
  10.             cislo = strtod(pom.c_str(), NULL);
  11.             matice[i][j] = cislo;
  12.         }
  13.     }*/
  14.     delete[] matice;
  15.     delete[] matice1;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement