Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. {
  2. char tab[N][N];
  3. int i, j;
  4. double t;
  5. double a = 10.0; // Ustalony parametr krzywej
  6. double x, y; //Wyznaczone wspolrzedne lemniskate
  7.  
  8. //wyzerowanie tablicy
  9. for(i = 0; i < N; ++i)
  10. {
  11. for(j = 0; j < N; ++j)
  12. tab[i][j] = ' ';
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement