const int w = 12;
void setup() {
pinMode(w, OUTPUT);}
void loop(){int x =9;
int t = 100;
boolean hasil = (x<15) && (t>15);
digitalWrite (w, hasil ? HIGH : LOW);
}
const int w = 12;
void setup() {
pinMode(w, OUTPUT);}
void loop(){int x =9;
int t = 100;
boolean hasil = (x<15) && (t>15);
digitalWrite (w, hasil ? HIGH : LOW);
}