Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. class Warstwa{
  2.         private Neuron [] tablica_neuronow ;
  3.        
  4.         Warstwa(int libcza_neuronow){
  5.             tablica_neuronow = new Neuron[libcza_neuronow];
  6.         }
  7.        
  8. }
  9.  
  10. class Siec{
  11.     private itn neurony_wejsciowe;
  12.     private int neurony_ukryte;
  13.     private int neurony_wyjsciowe;
  14.     private Warstwa wejscie;
  15.     Private Warstwa wyjscie
  16.     priavte Warstwa ukryta;
  17.    
  18.     Siec(int a , int b , int c){
  19.         neurony_wejsciowe = a;
  20.         neurony_ukryte = b;
  21.         neurony_wyjsciowe = c;
  22.         wejscie = new (a);
  23.         wyjscie = new (c);
  24.         ukryte = new (b);
  25.    
  26.     }
  27.  
  28.  
  29.  
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement