Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. void setup() {
  2. Serial.begin(9600);
  3. int a = 666;
  4. int b = 13;
  5.  
  6. int c = -2;
  7. int d = 1023241323;
  8.  
  9. Serial.println(a+b);
  10. Serial.println(a-b);
  11. Serial.println(a*b);
  12. Serial.println(a/b);
  13.  
  14. Serial.println(c+d);
  15. Serial.println(c-d);
  16. Serial.println(c*d);
  17. Serial.println(c/d);
  18. }
  19.  
  20. void loop() {
  21. // put your main code here, to run repeatedly:
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement