Advertisement
fraczek95

Untitled

Jun 9th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. bool alarm_w_temp = false;    //nagły wzrost temp. >20 st. C
  2. bool alarm_temp = false;      //obiekt powyżej 100 st. C
  3.  
  4. for (int x = 0 ; x < 768 ; x++)
  5. {
  6.   if (temp[x] >= wyniki[x] +20) alarm_w_temp = true;
  7.   if (temp[x] >= 100) alarm_temp = true;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement