Advertisement
Sylv3rWolf

Bakery RIGID

Oct 15th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.66 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package bakery;
  7.  
  8. public class Bakery {
  9.   static int x;
  10.   static int y;
  11.   public static void main(String[] args) {
  12.     try {
  13.       for (int j = 0; j < 10; j++) {
  14.         x = 0;
  15.         y = 0;
  16.  
  17.        int tab[] = new int[10];
  18.        for(int m=0;m<10;m++) {
  19.            
  20.            tab[m] = m++;
  21.        }
  22.        
  23.        int tabMIN[] = new int[5];
  24.        int tabMAX[] = new int[5];
  25.        
  26.         Thread t1 = new Thread() {
  27.            public void run() {
  28.               /*
  29.              x = 1;
  30.              int min = tab[0];
  31.              for(int lm=0;lm<100;lm++) {
  32.              for (int i = 0; i < 10; i++) {
  33.                  if(min>tab[i]) {
  34.                      min = tab[i];
  35.                  }
  36.                y = 1;
  37.              }
  38.              
  39.            } */
  40.            
  41.               for(int m1=0;m1<5;m1++) {
  42.                  
  43.                   System.out.println(m1+" zbiór mniejszych liczb");
  44.               }
  45.            }
  46.         };
  47.  
  48.         Thread t2 = new Thread() {
  49.            public void run() {
  50.                /*
  51.               int ly = y;
  52.               int lx = x;
  53.               System.out.println("Thread 2: y = " + ly + ", x = " + lx);
  54.          
  55.            */
  56.           for(int m2=5;m2<10;m2++)
  57.               System.out.println(m2+" zbiór większych liczb");
  58.               }
  59.            
  60.         };
  61.  
  62.         t1.start();
  63.         t2.start();
  64.         t1.join();
  65.         t2.join();
  66.       }
  67.     } catch (InterruptedException e) { }
  68.   }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement