Advertisement
gabbyshimoni

Example1-090518

May 9th, 2018
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. int x, y;
  2. void setup() {
  3.   Serial.begin(9600);
  4.  
  5.   for (int q = 100; q >= 50; q -= 5) {
  6.     if ((q - 25) < 40) {
  7.       Serial.println(q);
  8.     }
  9.   }
  10. }
  11. void loop() {
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement